When I click the button that calls up the userform, the userform comes up, but none of the default values I have picked show. I am using Excel 2010.
How do I fix my code?
How do I fix my code?
Code:
Sub NewTranslationRequest()'Fill Default Data
OptionButton1 = True
OptionButton2 = False
OptionButton3 = False
OptionButton4 = True
OptionButton5 = False
OptionButton6 = True
OptionButton7 = False
OptionButton8 = True
OptionButton9 = True
OptionButton10 = False
OptionButton11 = True
CheckBox1 = True
CheckBox2 = True
CheckBox3 = True
CheckBox4 = True
CheckBox5 = False
CheckBox6 = False
CheckBox7 = False
'Clear previous data
ComboBox1 = ""
TextBox4 = ""
TextBox1 = ""
TextBox2 = ""
TestBox3 = ""
UserFormNewRequest.Show
End Sub
Last edited by a moderator: