randommetalguy
Registered User.
- Local time
- Today, 18:59
- Joined
- Nov 25, 2008
- Messages
- 52
Hey,
I have an input form with about 8 text boxes on it. I want to store the values from the 8 text boxes in a table so I can access the values later. I have a table called tblInputForm that I want to store the data in.
When I click a submit button how do I store the text box values into the temporary table?
Would it be something like
Insert InputForm.textbox1.value into tblInputForm Field1
Also when would be the best time to delete the data in tblInputForm? I was thinking whenever the form is loaded to clear the textbox values and make sure the tblInputForm is empty.
I have an input form with about 8 text boxes on it. I want to store the values from the 8 text boxes in a table so I can access the values later. I have a table called tblInputForm that I want to store the data in.
When I click a submit button how do I store the text box values into the temporary table?
Would it be something like
Insert InputForm.textbox1.value into tblInputForm Field1
Also when would be the best time to delete the data in tblInputForm? I was thinking whenever the form is loaded to clear the textbox values and make sure the tblInputForm is empty.