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 Westi 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. AmatuerAtBest

    Yes or no Query

    I am trying to pop up a box that asks the user a question, adn then he can either answer yes or no, with no other options. What would be the best way to go about this. Thanks for any help.
  2. AmatuerAtBest

    Filtering and searching in access using code

    That did not change anything, I still get the same error.
  3. AmatuerAtBest

    Filtering and searching in access using code

    I am trying to do a search in access. My code is as follows Private Sub Command348_Click() Dim sString As double On Error GoTo Command348_Err Me.OrderByOn = False Me.OrderBy = "Invoice #" Me.OrderByOn = True Me.FilterOn = False sString = Me.Text345 Me.Filter =...
  4. AmatuerAtBest

    Pause Code for another form to execute

    Is there a way to pause the code so that another form can execute. I am using the code to launch a form, collect data in that form, and then it needs to use that data in the rest of the function. The problem I am running into is that the code does not pause while the other form is open, so the...
  5. AmatuerAtBest

    Using Variables between forms

    I figured it out. It was a label error, (I am updating a database for the new year) Thanks for all of your help this morning!
  6. AmatuerAtBest

    Using Variables between forms

    Sorry, I am not understanding what you are trying to tell me. For what its worth, all I really want is to use an input variable in a pop up form, from a variable that was input in another form.
  7. AmatuerAtBest

    Using Variables between forms

    What I am doing is using one form, clicking a button in it that asks the user for "invoice number" then it asks shipping information, and at the end it pops up another form that allows the user to enter in how much of each item was shipped. The problem that I am having is that the new form does...
  8. AmatuerAtBest

    Using Variables between forms

    I am trying to use one form to have the user input a "device number", and then that opens a new form in which that number will be used. I am unable to get the input variable however to actually be usable in the new form. Any help would be great!

Part and Inventory Search

Back
Top