Adding UI to Tab Control

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

Guest

Thank you in advance for any and all assistance. I have an application that
has a tab control and I have UI user controls I wish to populate various tabs
with and I've tried the forms.UIname.show and many others. Any and all
assistance to place the UI's on the tabs would be greatly appreciated.

Michael
 
eSolTec said:
I have an application that has a tab control and I
have UI user controls I wish to populate various tabs
with and I've tried the forms.UIname.show and many others.

\\\
Dim uc As New UserControl1()
Me.TabControl1.TabPages(0).Controls.Add(uc)
///
 
Back
Top