Hi,
I want to pull the values from a form which has a text box ,option button and check boxes and store these values in the database.How do i go about it.
kanchan
Printable View
Hi,
I want to pull the values from a form which has a text box ,option button and check boxes and store these values in the database.How do i go about it.
kanchan
I usually do something like this:
dbRecordset![FieldName] = Text1.Text
Another way is to connect the .DataSource & .DataField of the controls to your DB; then do a .AddNew before user enters info, and a .Update to save the values to the DB.
Hi,
Thats fine but how do i pull values of check box and option button when i want to store the caption of the check box or option button
kanchan