Tab Control error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a tab control with 3 pages. On each page is a series of textboxes and
labels. The textboxes on page 2 (pageindex 1) are "bleeding through" and are
visible on page 1 (pageindex 0) and the same for page 2. The controls from
page 3 are bleeding through and are visible on page 2. Does anyone know why
this happens and is there a fix for it?

Thanks,

David
 
hi,
I have a tab control with 3 pages. On each page is a series of textboxes and
labels. The textboxes on page 2 (pageindex 1) are "bleeding through" and are
visible on page 1 (pageindex 0) and the same for page 2. The controls from
page 3 are bleeding through and are visible on page 2. Does anyone know why
this happens and is there a fix for it?
This behavior indicates that your controls are not on the page, but on
the form beneath.


mfG
--> stefan <--
 
In order to ensure that the control actually exists on the tab, you must
first select the tab you want to place the control on, then click on the
control you want in the tool bar, then position it on the tab (when you do
this, the area inside the tab control will turn black). If you try to drag
the control from elsewhere on the form or on another tab, it will actually
place the control over the tab, but it will not actually be bound to a
specific tab. However, if you cut the control from elsewhere on the form,
you can paste it into a particular page of the tab control (at least this
works with XP).

"BigTroubleInLittleChina"
 
Back
Top