I have set-up a tab control and have buttons set up to add and remove the tabs.
I want to place a text box into all the tabs, so when a new tab is added a text box is already placed inside the tab. I am not sure on how I would do this.
Dim myTabPage0 As New TabPage()
myTabPage0.Text = "Event " & (TabControl1.TabPages.Count + 1)
TabControl1.TabPages.Add(myTabPage0)
This is the code I am using to create the new tab could it be edited to allow for a textbox to be added.