Tab character in a Text Box

P

pb

I have a form with 3 text boxes. What I want is the TAB key to send
the user to the next control. The problem I am having is that
sometimes the TAB key will just add a TAB character to the text box
value. Is there a control or property I need to set/change. The only
thing I have in the txtForm_Change() subroutine is "txtForm.Value =
UCase(txtForm.Value)" to force the value to upper case (maybe there
another/better way to accomplish this?). Thanks for any help.
-pb
 
J

Jim Cone

Set the TabKeyBehavior property to false for each Textbox.
You can do that in the VBE properties window or with code.
--
Jim Cone
Portland, Oregon USA
http://www.mediafire.com/PrimitiveSoftware
(Data Options add-in: insert or delete rows/date picker/random stuff)





"pb" <n4213l@gmail.com>
wrote in message
news:f1ee2dee-3f88-4c31-891c-aa421bc5c32a@x5g2000pbl.googlegroups.com...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top