Wich is the best way to save the value the user writes into some textboxes, into a table?
Exempel: I have 2 texboxes (Text1 and Text2) and my tablename is Test and the fieldname are the same as the textboxes (Text1-Text2).
Printable View
Wich is the best way to save the value the user writes into some textboxes, into a table?
Exempel: I have 2 texboxes (Text1 and Text2) and my tablename is Test and the fieldname are the same as the textboxes (Text1-Text2).
rs("test1").value = form1.test1.value
rs("Text1").Value = form1.Text1.value
Thanks, Pavly.
Can you show me an complete code?
Help me someone...
Yepp, It's solved my problem. Thanks!