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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TEXTBOX non visible 2

sal21

Programmer
Apr 26, 2004
428
IT
I just
I Just have a sstab with 5 tabs.

During the project in ide i Just have create various textbox.

But One or more are not are Visibile!

Peraphs One or more Tab have covered It!

How to find the not visibile textbox?
 
Right-click the SSTAB control and select Send to back from the menu that appears.You should then be able to see any controls that were behind the sstab - unless they are somehow positioned off the form (which is what Andy was alluding to)
 
So now the question is: is your text box placed on SSTab or on the Form, in which case your SSTab is covering your text box.
What you can do is check if the Container of your TextBox is your Form or your SSTab:

MsgBox YourTextBox.Container.Name
 
You'd better reset position in form_resize event. If you just want to find the control in IDE, you may find the control in the property drop list, then the control will be selected.
 

Part and Inventory Search

Sponsor

Back
Top