Adding UI to Tab Control

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
 
H

Herfried K. Wagner [MVP]

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)
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top