Tab between Text Boxes no longer working

S

Scott

After adding numerous controls to a Multipage control, I
am now no longer able to tab between Text Box controls.
The tab function did work prior to the recent adds.
Instead of changing the focus, the tab key now adds a tab
in the Text Box.

The Text Box properties which affect the tab as set as
follows:
AutoTab = False
MultiLine = False
TabIndex = 0
TabKeyBehavior = False
TabStop = True

Any help is greatly appreaciated!!!

Thanks...Scott
 
M

Mark Bigelow

Hi Scott,

The reason is probably because of this line:

TabIndex = 0

Change the tab index to the position you want that text box to be in.
In other words, the first one should be 1, the second 2, etc.

If that doesn't work, please let me know.

Mark

---
Mark Bigelow
mjbigelow at hotmail dot com
http://hm.imperialoiltx.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 

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