I have created 3 Combo Boxes populated with AddItem. The initial template works great. Each drop down allows the user to select the required input. Problem is once you save the document and reopen it all you get is the index number of the selected input. I would use the form dropdown but I'm well over the 25 limit.
The only thing I removed from above was about 30 AddItems.
Code:
Private Sub ComboBox2_change()
ComboBox2.AddItem "ALL"
ComboBox2.AddItem "ANGUILLA"
ComboBox2.AddItem "ANTIGUA AND BARBUDA"
ComboBox2.AddItem "ARUBA"
ComboBox2.AddItem "BAHAMAS"
ComboBox2.AddItem "BARBADOS"
ComboBox2.AddItem "BELIZE"
....
End Sub
The only thing I removed from above was about 30 AddItems.