Adding UI to Tab Control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • eSolTec, Inc. 501(c)(3)

    #1

    Adding UI to Tab Control

    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.sh ow and many others. Any and all
    assistance to place the UI's on the tabs would be greatly appreciated.

    Michael
  • Herfried K. Wagner [MVP]

    #2
    Re: Adding UI to Tab Control

    "eSolTec, Inc. 501(c)(3)" <eSolTecInc501c 3@discussions.m icrosoft.com>
    schrieb:[color=blue]
    > 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.sh ow and many others.[/color]

    \\\
    Dim uc As New UserControl1()
    Me.TabControl1. TabPages(0).Con trols.Add(uc)
    ///

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://classicvb.org/petition/>

    Comment

    Working...