G Guest Feb 3, 2006 #1 I have a form with a state field that I want to force to upper case if it is entered incorrectly.
S Sandra Daigle Feb 3, 2006 #2 Use the strConv function - put this in the AfterUpdate event of the control: Me.State = StrConv(Me.State, vbUpperCase)
Use the strConv function - put this in the AfterUpdate event of the control: Me.State = StrConv(Me.State, vbUpperCase)
G Guest Feb 3, 2006 #3 Thank you! Sandra Daigle said: Use the strConv function - put this in the AfterUpdate event of the control: Me.State = StrConv(Me.State, vbUpperCase) -- Sandra Daigle [Microsoft Access MVP] Please post all replies to the newsgroup. I have a form with a state field that I want to force to upper case if it is entered incorrectly. Click to expand... Click to expand...
Thank you! Sandra Daigle said: Use the strConv function - put this in the AfterUpdate event of the control: Me.State = StrConv(Me.State, vbUpperCase) -- Sandra Daigle [Microsoft Access MVP] Please post all replies to the newsgroup. I have a form with a state field that I want to force to upper case if it is entered incorrectly. Click to expand... Click to expand...