Auto Form Entry

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

Guest

I followed the following procedure to have my fields automatically entered
into a form:

To *display* the employee information on the Form, include all the
fields in a Combo Box; use textboxes with control sources such as

=comboboxname.Column(n)

where n is the zero based index of the field you wish to see.

When I did the Last Name it appeared, all of the other fields remained blank
and I am sure that I have all of the columns set correctly. What could be
causing this. I also need for these fields to be entered into my WEDNET Tbl
in their appropriate fields so that I can print reports.
 
Ron said:
I followed the following procedure to have my fields automatically entered
into a form:

To *display* the employee information on the Form, include all the
fields in a Combo Box; use textboxes with control sources such as

=comboboxname.Column(n)

where n is the zero based index of the field you wish to see.

When I did the Last Name it appeared, all of the other fields remained blank
and I am sure that I have all of the columns set correctly. What could be
causing this. I also need for these fields to be entered into my WEDNET Tbl
in their appropriate fields so that I can print reports.

The extra columns not only need to be added to the RowSource of your
ComboBox, but you also need to increase the ColumnCount property to reflect
the number of columns you want to use.

Did you do that?
 
Back
Top