Drop Down Box

G

Guest

I would like to add a drop down box on a form with just
four selections. How do I do it?
 
K

Ken Snell

Add the combo box to the form in design view. In the properties for the
combo box:
set RowSourceType to Value List.
set RowSource to the list of value: "value1";"value2";"value3";"value4"
 
Top