Astello
10-09-2006, 12:26 PM
I want to put a textbox on a form that will take user input (a postal code) and put it into a table. I'm not sure how to do this. Is it even possible, and if so, any suggestions?
|
View Full Version : User input from textbox to table Astello 10-09-2006, 12:26 PM I want to put a textbox on a form that will take user input (a postal code) and put it into a table. I'm not sure how to do this. Is it even possible, and if so, any suggestions? KeithG 10-09-2006, 12:32 PM Make a form with a textbox bound to your table. Astello 10-09-2006, 12:35 PM How do I bind a textbox to my table? KeithG 10-09-2006, 12:37 PM First create your form and choose the record source of the form. Next create a textbox and then make its control source the column of your table. Astello 10-09-2006, 12:43 PM If I already have a form going, do I need to create a subform? I haven't used a subform before. KeithG 10-09-2006, 12:46 PM No, have you set the record source of your form? Astello 10-09-2006, 12:48 PM No, I'm using the form to pull data from another database, then I'm making a new table where the user inputs data that I planned to append to the pulled data with a query. So the user input to table is for the smaller table that I want to append. |