Hello,
I am new to excel an I was hoping to get some help.
I have created a userform with multiple text boxes, I would like to force the entered text to Upper case. I currently am using a ucase syntax, but it looks rookie and slows my code down
This is what I have so far.
Private Sub tb_Q1_Change()
tb_Q1.Text = UCase(tb_Q1.Text)
End Sub
Private Sub tb_Q2_Change()
tb_Q2.Text = UCase(tb_Q2.Text)
End Sub
I know there is a way to use a class module but I am unfamiliar with set up.
Can anyne help?
I would appreciate code examples for the class Module and the regular module
Thanks in advance
I am new to excel an I was hoping to get some help.
I have created a userform with multiple text boxes, I would like to force the entered text to Upper case. I currently am using a ucase syntax, but it looks rookie and slows my code down
This is what I have so far.
Private Sub tb_Q1_Change()
tb_Q1.Text = UCase(tb_Q1.Text)
End Sub
Private Sub tb_Q2_Change()
tb_Q2.Text = UCase(tb_Q2.Text)
End Sub
I know there is a way to use a class module but I am unfamiliar with set up.
Can anyne help?
I would appreciate code examples for the class Module and the regular module
Thanks in advance