C
chowgirl
There is something very easy and basic here. My comboboxes have
hard-coded items and the code as entered in Design Mode is as follows:
Private Sub ComboBox1_Change()
ComboBox1.List = Array("Functional", "Look and feel", "Usability",
"Performance", "Operational", "Maintenance", "Security", "Legal",
"Other")
End Sub
Private Sub ComboBox2_Change()
ComboBox2.List = Array("1", "2", "3", "4", "5")
End Sub
Private Sub ComboBox3_Change()
ComboBox3.List = Array("1", "2", "3", "4", "5")
End Sub
Problem: Every time I close the file and re-open, the selections are
cleared. I have to enter Design Mode and Run the Form to get them back.
How do I keep the dropdown list populated?
Thanks.
hard-coded items and the code as entered in Design Mode is as follows:
Private Sub ComboBox1_Change()
ComboBox1.List = Array("Functional", "Look and feel", "Usability",
"Performance", "Operational", "Maintenance", "Security", "Legal",
"Other")
End Sub
Private Sub ComboBox2_Change()
ComboBox2.List = Array("1", "2", "3", "4", "5")
End Sub
Private Sub ComboBox3_Change()
ComboBox3.List = Array("1", "2", "3", "4", "5")
End Sub
Problem: Every time I close the file and re-open, the selections are
cleared. I have to enter Design Mode and Run the Form to get them back.
How do I keep the dropdown list populated?
Thanks.