Hi, I need to create a UserForm containing a ComboBox initialized with two pre-defined values. The UserForm code looks like this:
Private Sub UserForm_Initialize()
ComboBox1.AddItem "Value_A"
ComboBox1.AddItem "Value_B"
End Sub
If I run the code, the results are as expected ONLY if the...