How to control the sequence of Tab key for the input text box.
Hi here I have ten text box and some button.
Because some of then I change and modify latter. So when I use the TAB key, it can not go in the order I want.It was mixed up. How can I assign the TAB sequency to the ten box.
Millions of thanks in advance
wky086
Re: How to control the sequence of Tab key for the input text box.
check the property .TabIndex of the textbox or button.
setting the .TabIndex = 0 means it is the first .TabIndex = 1 the second and so on
HTH
cksiow
http::/vblib.virtualave.net - share our codes
Re: How to control the sequence of Tab key for the input text box.
In each text box you have the TabIndex property.
So, use this property to set the Tab sequence with values, to give you the order you want.First is zero, next is 1 and so on...