You can set up your list of choices like this:
ListOfChoices = "Alaska AK" _
+chr(9) + "Arizona AZ" _
+chr(9) + "Arkansas AR"
so your declaration will look like this:
DropComboBox 9, 17, 111, 41, ListOfChoices, .ComboBox1
Now, to call your dialog box:
Done = FALSE
While Done...