Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. fperri

    Form Filter with Multiple Values?

    I also tried... Me.Filter = "DATATABLE_WHOLESALE.LenderCode = '" & Me.txtLender.Value & "' AND DATATABLE_WHOLESALE.RegionCode = '" & Me.txtRegion.Value & "'" But I get error "2001: You cancelled the previous operation.
  2. fperri

    Form Filter with Multiple Values?

    Is it possible to have a filter that has more than one value? I cannot figure out how to code it correctly. THe following is what I have for one value. Me.Filter = "DATATABLE.LenderCode = '" & Me.cboLenderCode & "'" I did this for two values but it doesn't work..... Me.Filter =...
  3. fperri

    Add "ALL" value to combo box.

    By the way I've tried.... Me.cboLender.AddItem ("ALL",0) I get the compile error "Expected: =" ....and I am using Access 2002 if this helps
  4. fperri

    Add "ALL" value to combo box.

    I have a combo box that pulls the data from a table. Is there anyway for me to add an "ALL" option to the list?
  5. fperri

    Filter form data in VB code...

    That is what it was. I originally had the fields pulling from a table, then I changed it to a query and didn't change the control source. (DOPE!) Thanks for your help.
  6. fperri

    Filter form data in VB code...

    I created a form that has two combo boxes at the top. The user has to select a value in each and then click "search". In the code for the button's onClick event I have put me.requery. Right now I have the form's recordsource property set to a query I created and saved in the database that pulls...
  7. fperri

    Cannot delete Form module that Access says doesn't exist.

    Thanks guys, that's pretty much what I ended up doing. Just created a new database and copied the forms in and then I had to rewrite the code.
  8. fperri

    Cannot delete Form module that Access says doesn't exist.

    I created a form and had started the code for it - when I went to save I originally saved it as the default "Form1" Then after I finished the code and wanted to add it to my menu I renamed it to what I wanted it in the forms window. For some reason unkown to me, it renamed it, but then left the...

Part and Inventory Search

Back
Top