tab control
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I'm trying to add a tab control to my form, and I did that, now i need to code it, does anyone have any sample code for that form. rives
Hi! What do you mean by code it?Add TabPages? Create a TabPage objects, assign some text to the Text property and then do TabControl.Controls.Add(myTabPage) and the tabControl will have a new tabPage.And so on... dim myTabPage as New TabPAge myTabPage.Text = "Tab1" (...) myTabControl.Controls.Add(myTabPage) Never say never