A AstonCheah Registered User. Local time Today, 13:59 Joined Jul 31, 2008 Messages 23 Oct 29, 2008 #1 how to run a code which will automatically convert to uppercase letter when key in lowercase letter? anyone can help? thanks.
how to run a code which will automatically convert to uppercase letter when key in lowercase letter? anyone can help? thanks.
boblarson Smeghead Local time Yesterday, 22:59 Joined Jan 12, 2001 Messages 32,059 Oct 29, 2008 #2 If you want ALL letters entered to be stored this way, you can put this in the BeforeUpdate event of the control: Me.YourControlName = UCase(Me.YourControlName)
If you want ALL letters entered to be stored this way, you can put this in the BeforeUpdate event of the control: Me.YourControlName = UCase(Me.YourControlName)
A AstonCheah Registered User. Local time Today, 13:59 Joined Jul 31, 2008 Messages 23 Oct 29, 2008 #3 thanks boblarson, works well.