hello..for the process that u mentioned, i have 2 open a connection in click event of that button and assign every text box to database with a recordset...right???...but how can i do that??//...bcz i'm really new to VB and i gotstuck...
help me plz...tnx
I use
Dim rstRecordSet As RecordSet
'Connection Info Here' Make sure you open the database to "Write"
With rstRecordSet
.AddNew
.Fields(0) = Text1.Text
.Fields(1) = Text2.Text
.Fields(2) = Text3.Text
.Fields(3) = Text3.Text
.Update
End With
^^ That should be your answer? not sure if thats what you wanted but let me know