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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AndrewNeely

  1. AndrewNeely

    Polpulating and selecting from combo box

    If you wish to have several records possible (like searching for "smith" in the phone book), and you want to display the results, you need to iterate (loop) through the recordset. Do while rs.eof=false cmbCombo1.additem( "" & rs.Fields("TEST_NAME")) 'moves the database to the next...
  2. AndrewNeely

    Sound with ENTER

    To Turn off the beep, create a "KeyPress" event for the textbox, and enter this code if keyascii=13 then keyascii=0 'do whatever you wanted end if by resetting the keyascii (the ascii value of the keypress) you'll eliminate the beep.

Part and Inventory Search

Back
Top