How to fix a form and corresponding table relationship?

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

Guest

I enter data into a form from a corrresponding acronym table. The data in
the form is linked to a table and the data in the table is shown as the ID of
the acronym instead of the acronym.
 
I enter data into a form from a corrresponding acronym table. The data in
the form is linked to a table and the data in the table is shown as the ID of
the acronym instead of the acronym.

If you're using a Combo Box to enter the acronym, change its
ColumnWidths property to set the width of the ID field (the first
field, probably) to 0. The ColumnCount should be 2, and the
ColumnWidths property should be

0;<some nonzero value>

John W. Vinson[MVP]
 

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

Back
Top