Easy question (I'm just ignorant)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know this is really basic, but I don't really know what I'm doing.

I have a tiny table that records start and end date of the current financial
period. Just one record, four fields.

I also have a little form that these details can be entered into once a
month. How do I get the form to change the details in the table to those
entered in the form?

Many thanks

Vaughan
 
Vaughan said:
I know this is really basic, but I don't really know what I'm doing.

I have a tiny table that records start and end date of the current
financial period. Just one record, four fields.

I also have a little form that these details can be entered into once
a month. How do I get the form to change the details in the table to
those entered in the form?

Many thanks

Vaughan

If you bind the form to the table that should automatically happen. The
RecordSource property of the form should be the name of your table and the
ControlSource property of each control on the form should be the corresponding
name of a field in the table.
 
Back
Top