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 strongm 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. Scheur

    Adding Data to a database from VB6

    Maybe this will help you on your way: Dim Conn As Connection Set Conn = DataEnvironment.YourConnection Conn.Execute ("INSERT INTO tablename VARIABLES (" & txtRownumber & ", '" & txtName & "')") You can use this code behind a save button to insert the data in the...
  2. Scheur

    Message Box to Display if Duplicate Values are entered in Field

    You can also query the database first before you save the input to the database. Search for a record with the given CustemerID and use Recordcount to find out if the record exists. If recordcount is 1, you can raise an error. Otherwise you can launch an insert query to save the input.

Part and Inventory Search

Back
Top