Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text box transparencies and tab order 1

Status
Not open for further replies.

dvetro

IS-IT--Management
May 29, 2003
6
0
0
IN
Hello,
I have created a form that has a check box for a control, depending on the value of this box I have two other boxes that stay transparent if the box is unchecked and go to normal if the box is checked. This works great, but even if I leave the box unchecked my tab order still takes me to those text boxes. Is there a way to skip those boxes if the box is left unchecked?

Any help is appreciated,

Thanks in advance
 
Hi!

You can use the following code in the click event for the check box:

YourFirstControl.TabStop = YourCheckBox.Value
YourSecondControl.TabStop = YourCheckBox.Value
etc.

hth


Jeff Bridgham
bridgham@purdue.edu
 
Jeff,
thanks for your help, that worked perfectly, you the man.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top