I know how to make a new tab, but how can i get the items in the main tab over to the tabs a add?
sorry for english
Code:
Dim tabPage1 As New TabPage ' Creating a new tab page instance
tabPage.Controls.Add(Label1) ' Adding a label control to our tab page
tabControl1.Controls.Add(this.tabPage1) ' Adding the tab page, with our Label onto tab control
Originally Posted by freedompeace
Code:
Dim tabPage1 As New TabPage ' Creating a new tab page instance
tabPage.Controls.Add(Label1) ' Adding a label control to our tab page
tabControl1.Controls.Add(this.tabPage1) ' Adding the tab page, with our Label onto tab control
Dim tabPage1 As New TabPage ' Creating a new tab page instance
tabPage.Controls.Add(Label1) ' Adding a label control to our tab page
tabControl1.Controls.Add(this.tabPage1) ' Adding the tab page, with our Label onto tab control