Recent content by Chillendw

  1. C

    Subform by date; datetime issue

    It's actually just a text box with the Control source as a field in the query... So I didn't change anything and it somehow started working. I did close and reopen it, not sure if that did it. But I came across another problem. The dropdown on the main form gives me dates when orders were...
  2. C

    Subform by date; datetime issue

    The DateValue() function does work in regards to pulling the dates on the main form. My issue is that for any records in the table that have the time stamp attached (all will, any that don't was just me testing), the subform will not pull up any records. The form comes up blank despite there...
  3. C

    Subform by date; datetime issue

    Good afternoon everyone, So I'm having an issue with a subform populating records. I want it to populate all the orders for whichever date is selected on the main form. However, it doesn't pull up all of the records. I've been able to deduce that it's the format of the date. I have the date...
  4. C

    Combobox working on 1 form not on another

    ... Wow... :banghead: Thanks!
  5. C

    Combobox working on 1 form not on another

    So I'm a bit baffled and hoping that I can get some help. Issue is that I'm able to get cascading comboboxes to work in 1 form but not on another, despite using the same vb. After selecting a Factor (name), only the Lot Numbers associated with that Factor name should show up. I've attached...
  6. C

    Why 2501? Why

    Thanks a lot pbaldy. I was hoping you could explain what exactly that little bit of code does. That way I actually understand it, and know why I'm doing it. ExitHandler: Set rs = Nothing Set db = Nothing Exit Sub Thanks!
  7. C

    Why 2501? Why

    So there's no more 2501 error pop-up. But now there is a blank pop-up that comes up even when I do have a report available. I've attached a pic so you know what I mean. And here's the code on the button to get the report: Private Sub btnReport_Click() On Error GoTo ErrorHandler...
  8. C

    Why 2501? Why

    Wow..... :banghead: Thanks pbaldy!
  9. C

    Why 2501? Why

    So I've searched and tried different codes to prevent this error from popping up. I was able to get the pop-up msg to display, but then I keep getting 2501. Basically: I have a report that I call upon via a form that is used by a query to populate the report. On the report NoData Event...
  10. C

    Deploying my new db

    Thanks for the replies. I have a forms page setup as the main page; kind of like a switchboard for them to pick what they want to do. I can believe it. Just so I get this right; Disable 'Show Nav Pane' Disable 'Use Access Special Keys' Disable 'Allow Full Menus' Then convert to ACCDE Then...
  11. C

    Deploying my new db

    So (I think) I finally finished a db I was working on during my internship. First, thank you to this site (and it's "sister-site") as well as those who have directly answered my noob questions. Appreciate the help. Secondly, I was wondering how I would go about making it... "user-friendly?"...
  12. C

    Criteria for "Today" when Date/Time

    Thanks almahmood! This worked for me.
  13. C

    Criteria for "Today" when Date/Time

    So I'm trying to create a query to show me today's transactions. I thought it would be as easy as =Date() Alas, I'm here... So I'm thinking it's because I have date and time in the field. And it's captured by Now() in some forms. How can I go about getting today's records. Thanks in advance.
  14. C

    Incorrect cascading combobox VB, help plz

    Thanks for your response pbaldy. It has the FactorName only. I had tried to select 2 fields (FactorName & FactorID) since it's going into a table that requires FactorID and not FactorName. However, it wouldn't GROUP BY since SELECT DISTINCT had too many columns. It turns out that that's...
  15. C

    Incorrect cascading combobox VB, help plz

    So I've been trying to get a "simple" cascading combo box to work but I can't seem to get it correct. The first combobox lists the fields correctly, but the second combobox comes up blank. There is information in each field within the table (tblFactors). Basically, I want to be able to pick...
Back
Top Bottom