Textboxes

  • Thread starter Thread starter Xarky
  • Start date Start date
X

Xarky

Hi,

I have a windows application, which has a sequence of textboxes.
Now when I execute the application and start to enter data into the
textboxes, I use the tab to go from one textbox to another. The
problem is that when I press the tab, the sequece is not correct, ie
it starts from textbox 1 than jumps to textbox 4, then to textbox
3,...

How can I fix the problem so that I can enter the data in the
correct sequence.


Thanks in Advance for your help.
 
Hi,

I have a windows application, which has a sequence of textboxes.
Now when I execute the application and start to enter data into the
textboxes, I use the tab to go from one textbox to another. The
problem is that when I press the tab, the sequece is not correct, ie
it starts from textbox 1 than jumps to textbox 4, then to textbox
3,...

How can I fix the problem so that I can enter the data in the
correct sequence.

set the tabindex property of textbox 1 to 0, textbox 2 to 1 etc.

/rw
 
You may also set the tab order visually: Open the form in designer mode and
select menu View | Tab Order. Now, click on individual controls in the order
you want the tab-index.

HTH

Hi,

I have a windows application, which has a sequence of textboxes.
Now when I execute the application and start to enter data into the
textboxes, I use the tab to go from one textbox to another. The
problem is that when I press the tab, the sequece is not correct, ie
it starts from textbox 1 than jumps to textbox 4, then to textbox
3,...

How can I fix the problem so that I can enter the data in the
correct sequence.


Thanks in Advance for your help.
 
Back
Top