Copying things in a tabpage1 to tabpage2

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • D0NUT1212
    New Member
    • Sep 2013
    • 1

    Copying things in a tabpage1 to tabpage2

    I am making a web browser and when they make a new tab i want it to liik like the first tab, but they turn out blank.i need them to act and look like tabpage1 (named: home)
    here is my code to make a new tab. (im using visualstudio 2012)

    Code:
            Dim myTabPage As New TabPage()
            myTabPage.Text = TextBox1.Text
            myTabPage.Name = TextBox1.Text
            TabControl1.TabPages.Add(myTabPage)
    Last edited by Rabbit; Sep 6 '13, 09:18 PM. Reason: Please use code tags when posting code or formatted data.
Working...