Sub App_Start
Form1.Show
AddButton(Form1,"Button1",0,0,80,40,"Button1")
AddTextBox (Form1,"TextBox1",40,20,100,25,"")
tbc.New1 ("Form1", 10,10, 200, 200)
tbc.AddTabPage("Page1")
tbc.AddTabPage("Page2")
tbc.AddTabPage("Page3")
tbc.AddControl("Button1",0,20,20)
tbc.AddControl("TextBox1",1,20,30)
End Sub
Sub tbc_SelectionChanged
msgbox("Selected page: " &
tbc.SelectedIndex)
End Sub