Tab between Text Boxes no longer working

  • Thread starter Thread starter Scott
  • Start date Start date
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
 
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
 
Back
Top