Create combo check box

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

Guest

I have a form based on a table. The table has a link (lookup wizard) to
another table linked in by the ID. On the form I want to create a combo check
box so that the user can select multiple items (hopefully by checking off a
box) in the box based on the # of records in the second table. When I use the
list box it does not give me the option checking off multipe items. Is this
possible?
Thanks
 
You can't "check" multiple items, but a listbox will let you "select"
multiple items. However, for what you're trying to do, a subform with a
checkbox (True/False) field may work better.
 
Patricia,
In your listbox properties, check out Multi Select in Help. You'll need to
build a loop to cycle through the number of choices you make.
hth
Al Camp
 
Back
Top