form design combo box?

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

Guest

Hi I have a form based on a table "Tours" and in this form is a field in
which I want to list various pick up points and times. Nothing needs to be
selected from this list in this form but data needs to be entered. Which
control would be best for this? I've tried combo boxes but the data needs to
be looked up obviously so this isn't viable. The data won't be selected in
"Tours" but will be in "Booking Form" which is obviously related.

Many Thanks
Michelle
 
If you want to limit the user to specific values, then combo box or list box
is your best choice.

You can change the list during the use of the form, based on other
selections that the user makes, so the lists can be dynamic. They can be
looked up from another table or query, or can be "value lists" where you
specify the actual values. All of this is done via VBA programming code.
 
Back
Top