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 biv343 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. ponnu2012

    vb6 to connect to acess database and insert records into the table

    txtempame.text,txtempid.text ad txtss.text are the ames of the texboxes in the form through which user enters the data.
  2. ponnu2012

    vb6 to connect to acess database and insert records into the table

    I did the modification but got error at this line as runtimeerror 424 .object required Set rs = cn.Execute("insert into employee (empname,empid,ssn) values('" & txtempname.Text & "'," & txtemplid.Text & "," & txtessn.Text & ") ")
  3. ponnu2012

    vb6 to connect to acess database and insert records into the table

    GIVEN below is vbscript to connect to acess database and insert records into the table using forms Private Sub Command1_Click() Set rs = cn.Execute("insert into employee values(txtempname.text,txtempid.text,txtssn.text) ") rs.Close cn.Close End Sub Private Sub Form_Load() datafile =...

Part and Inventory Search

Back
Top