Forms

  • Thread starter Thread starter tstone
  • Start date Start date
T

tstone

I have a form with 4 pieces information that has to be
entered. Upon clicking the submit button, I want these
pieces of information to be saved to a table or query. Is
this possible?
 
tstone said:
I have a form with 4 pieces information that has to be
entered. Upon clicking the submit button, I want these
pieces of information to be saved to a table or query. Is
this possible?


Hmmm, you want to know if it's possible in Access to use a form to enter data into a
table... nope. Never had that come up. :-)

Seriously, select your table in the db window and then press the AutoForm button in
the main Toolbar. Your done. You now have a form (a pretty basic one) that can be
used to enter data into that table. If you only want to use it to add records and
not see existing ones, then change the DataEntry property of the form to True.

If you have specific reasons why that setup is inadequate then let us know what they
are and we can go from there.
 
I have a form with 4 pieces information that has to be
entered. Upon clicking the submit button, I want these
pieces of information to be saved to a table or query. Is
this possible?

Possible, simple, routine and universally used.

Simply use the Table or Query as the Form's recordsource.
 
Back
Top