Multi-window Application with Tabs

Joined
Jan 5, 2008
Messages
8
Programming Experience
Beginner
How do I make it so that when you click seperate tabs on my program it shows different forms under the tab? Thanks in advance.
 
Last edited by a moderator:
You could create an MDI parent form with a TabControl docked to the top edge. You would handle the MdiChildActivate event of the form and the SelectedIndexChanged event of the TabControl to keep them in sync.
 
Back
Top