Drop Down Menus

  • Thread starter Thread starter David Jay
  • Start date Start date
D

David Jay

Hello,

I have forms that print customer information as well as product information.
Is there a way i can select a product from a drop down menu when entering
new records for new customers? Right now I just have a field names "product"
and I simply type in what product the customer typically takes. It would be
alot easier to simply draw that information from a list in that field.

Thanks group!
 
Use the Combo Box Control (not Menu) for this purpose. The information in
the drop-down list is determined by the table or query (query's usually
best) in the RowSource property, and the field to which it is bound, if any,
is the ControlSource property.

There is a nice wizard to help you create Combo Boxes.

Larry Linson
Microsoft Access MVP
 
Back
Top