Search results

  1. D

    VB code to display queries in a dialog box does not work

    I tried your advice but it didn't work. My list box only has 1 column; perhaps I made a mistake with your code. How would it be different for a single-column list box? Again, I would like to verify whether the list box works right on someone else's computer. I saved my database in Access...
  2. D

    VB code to display queries in a dialog box does not work

    Can someone download this zipped file of the database, open it, and see whether the frmQueriesDialogBox works the way it should? The reason I'm asking this is that I have some suspicion that it does, indeed, work but that the problem is with my installation of Access 2007 on my notebook PC...
  3. D

    VB code to display queries in a dialog box does not work

    If I understand your question, the answer is no. It's in the lstQueryList module and the Display module, since the objective is to display the query by Clicking on the Display button or Double Clicking the query name in the list box. So, you're saying it should be in the Form module? Should...
  4. D

    VB code to display queries in a dialog box does not work

    I'm not sure if this is the best section to post in. I'm taking a class on Access and have a database with numerous Queries. One assignment calls for creating a queries dialog box, named frmQueriesDialogBox, to display all queries. I've done that and the dialog box displays all queries. The...
  5. D

    Suppressing printing of controls when control value is null

    OK, is On Print where I need to enter the statement? I tried putting Me![PaymentID].Visible = True there but that did not work.
  6. D

    Suppressing printing of controls when control value is null

    I'm using Access 2007 and working on an assignment for a class on Access. One part of the assignment requires suppressing the printing of three controls based on a certain table when the PaymentID control value is null. The book gives a hint; it says, "Use the Detail section's Format event, and...
  7. D

    Displaying query records where field is null

    I tried that and I see how it works. Thanks for that info.
  8. D

    Displaying query records where field is null

    Hmm, so, I was making it way too complicated. That worked. Thank you!
  9. D

    Displaying query records where field is null

    Hi everyone, my first post here. I'm taking a class on Access and I'm working on an assignment where one of the requirements is to create a query which displays only those records where a field, named PermitNum, is null, or empty, in a table named tblCitation. 8 records should be displayed. I...
Back
Top Bottom