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 SkipVought 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: *

  • Users: VH
  • Order by date
  1. VH

    Getting rid of Access' shell

    What I did for this issue is this: 1-create a blank form called "background", set its property to "popup" 2-run it at startup with docmd.maximize (macro:autoexec) 3-assign a menu for it domenu.... It may help ! :-)
  2. VH

    Using An Access Form as a Search tool

    LonnieJohnson: Just a correction to the code: Private Sub txtFind_Click() Me.RecordSource = "SELECT * FROM YourTable " _ & "WHERE NAMEFIELD LIKE '*" & txtFind & "*'" End Sub It should be read: Private Sub cmdFind_Click() Me.RecordSource = "SELECT * FROM...

Part and Inventory Search

Back
Top