C
cynteeuh
I have the below code in the afterupdate of a field in a form. I want to also
force it to all caps if someone were to paste into it. I have a sample code
below, but I don't know how to combine the two or if that were possible.
Thank you in advance for your help!
Private Sub Cube_AfterUpdate()
[M/S] = Replace(Left([Cube], 4), ".", "")
End Sub
I want to add the below code to the above, if possible:
Me!TextBoxName = UCase(Me!TextBoxName)
force it to all caps if someone were to paste into it. I have a sample code
below, but I don't know how to combine the two or if that were possible.
Thank you in advance for your help!
Private Sub Cube_AfterUpdate()
[M/S] = Replace(Left([Cube], 4), ".", "")
End Sub
I want to add the below code to the above, if possible:
Me!TextBoxName = UCase(Me!TextBoxName)