Auto Form Entry

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.
 
R

Rick Brandt

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top