Hi all,
Please somebody tell me the code.
I have :
a textbox name txtfname
a table named Customer (located in Database.mdb)
the customer table has only 1 field fname.
How do i create a connection such that whenever i click on add button, whatever is in the txtfname textbox is added to the table Customer.
I want to do it without Adodc. I want it to be with connection objects.
It starts like :
Private Sub cmdAdd_click()
Dim rs as new adodb.recordset
Dim conn as new adodb.connection
Dim str as String
conn.open “Provider=Microsoft.Jet.OLEDB.4.0; Data Source=”& App.Path & "\database.mdb"
rs.open
rs.addnew
rs!fname=txtfname.text
rs.close
conn.close
End Sub