P
Pratchmg
I'm trying to put a combo box into a word document in VBA. This is my code
Private Sub ComboBox1_Change()
With ComboBox1
For ComboBox = 1 To 3
..AddItem "Mr"
..AddItem "Mrs"
..AddItem "Ms"
Next ComboBox
End With
End Sub
When I reopen the doccument, the menu items disappear. Would anyone have
any suggestions ?
Private Sub ComboBox1_Change()
With ComboBox1
For ComboBox = 1 To 3
..AddItem "Mr"
..AddItem "Mrs"
..AddItem "Ms"
Next ComboBox
End With
End Sub
When I reopen the doccument, the menu items disappear. Would anyone have
any suggestions ?