G
Guest
I have been using the following code to convert all text to upper case. It
works in all my text boxes except one.
Private Sub Name_AfterUpdate()
Name = StrConv(Name, vbUpperCase)
End Sub
In the text box Name if I enter a value Get an error message saying that the
text box is read only and cannot do the conversion.
Where can I change the read-only property?
works in all my text boxes except one.
Private Sub Name_AfterUpdate()
Name = StrConv(Name, vbUpperCase)
End Sub
In the text box Name if I enter a value Get an error message saying that the
text box is read only and cannot do the conversion.
Where can I change the read-only property?