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 TouchToneTommy 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. billmsacces

    MS-DOS handlers

    Every time I try to open my web form, I get an error that says that I've run out of MS-DOS handlers and that the page can not be loaded. What could be causing this? Thanks. B
  2. billmsacces

    Open Page for Data Entry

    I am currently working on a page that would be used to submit information to the database. This page will only be for data entry. Is their a simple code that can be used to make it go to a new record when it opens? Thanks. B
  3. billmsacces

    Searching a database

    I would like to search records in a form (frmCitation) by name (txtName) and/or date (txtPubdate). I made a simple form (frmSearch) with input boxes and a search button (cmdSearch). I have tried using the Find method, which would simply match terms in the input boxes, but I am not familiar...
  4. billmsacces

    searching for a record in a form

    I am currently using the built in FIND feature in Access to find records in my database. The FIND feature works but it is clunky. Is there a code that would search specific fields in the database. I’m thinking of something like Query By Form, but instead of displaying the info in a datasheet...
  5. billmsacces

    searching a form

    I am currently using the built in FIND feature in Access to find records in my database. The FIND feature works but it is clunky. Is there a code that would search specific fields in the database. I’m thinking of something like Query By Form, but instead of displaying the info in a datasheet...
  6. billmsacces

    Sorting Records in a Form

    I am currently working on a database that has a name field and date field. It is currently based on a query that sorts the records by name. But sometimes I would like to view the records by date. Is it possible to write a code that would resort the records by date? It was suggested tome to...
  7. billmsacces

    Choosing a sort method?

    I am currently working on a database that has a name field and date field. Is it possible to write a code that would sort the records by date or by name, depending on what was needed at the time? Thanks. Bill
  8. billmsacces

    Clearing Continuous Forms

    I am trying to clear a continuous form using the following code. Private Sub ClearForm_Click() Do While Me.NewRecord = False field1 = 0 field2 = 0 field3 = 0 DoCmd.GoToRecord acDataForm, "form1", acNext Loop End Sub It works fine until it...
  9. billmsacces

    Clear Continuous Forms

    I have a form that shows the data in continuous forms. I want to use a code to clear the entire form. I tried a simple loop procedure but it only clears the single line, not the entire form. Can anyone help me?

Part and Inventory Search

Back
Top