J JoeAcess Jones Local time Today, 04:42 Joined Dec 9, 2008 Messages 25 Mar 2, 2009 #1 Hi everyone I have a form in which i want all the enteries to be made in caps... Can i Make sure all the fields is entered in caps lock. How is this done?
Hi everyone I have a form in which i want all the enteries to be made in caps... Can i Make sure all the fields is entered in caps lock. How is this done?
wazz Super Moderator Local time Today, 07:12 Joined Jun 29, 2004 Messages 1,711 Mar 2, 2009 #2 you can use the UCase function to ensure all 'caps'. the On Exit event of your control might do it for you.
you can use the UCase function to ensure all 'caps'. the On Exit event of your control might do it for you.
J JoeAcess Jones Local time Today, 04:42 Joined Dec 9, 2008 Messages 25 Mar 2, 2009 #3 how do i code it under "on exit"
wazz Super Moderator Local time Today, 07:12 Joined Jun 29, 2004 Messages 1,711 Mar 2, 2009 #4 something like: Code: Private Sub textbox1_Exit(Cancel As Integer) Me.textbox1 = UCase(Me.textbox1) End Sub
something like: Code: Private Sub textbox1_Exit(Cancel As Integer) Me.textbox1 = UCase(Me.textbox1) End Sub
John Big Booty AWF VIP Local time Today, 09:12 Joined Aug 29, 2005 Messages 8,262 Mar 2, 2009 #5 You can also achieve this by putting a ">" greater than sign in the format field of the control. This can be done at either table or form level. This method only effects how the text is displayed, not how it is stored.
You can also achieve this by putting a ">" greater than sign in the format field of the control. This can be done at either table or form level. This method only effects how the text is displayed, not how it is stored.