Form w/Combo Box??

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

Guest

I have a table called DBaseUser (DBaseUser ID, DBaseUser) that lists
employees authorized to use the database. I want to create a form using
table JobInfo which also includes DBaseUser ID). How do I list the name of
the user in the box instead of the autonumber ID??
 
smboyd said:
I have a table called DBaseUser (DBaseUser ID, DBaseUser) that lists
employees authorized to use the database. I want to create a form
using table JobInfo which also includes DBaseUser ID). How do I list
the name of the user in the box instead of the autonumber ID??

If you add the ComboBox with the Toolbox wizard enabled that would be the
default configuration you would end up with. Essentially the ComboBox gets
two columns with the first one being the bound column and having a width of
zero so you don't see it.
 
Back
Top