tab control

miss rene

New member
Joined
Jan 29, 2009
Messages
2
Programming Experience
Beginner
Hi,

I want to create a tabcontrol using vb code. And also adding tabItem to the tabcontrol. Anyone know how to do it...?

Or otherwise, I created a user control that consists of tabcontrol. How am i going to add tabItem to the tabcontrol...?

Thanks
 
You can add a tab control to the form at run time just like any other control, specify the size and location properties and add it to the form's controls collection.

As for tab pages, build each page and add it to the tab control's tabpages collection.
 
Back
Top