First off make sure you have a good back up of your project. Select everything on your main form. Cut it all. Add your Tab control, and paste all the controls you just cut into the tab page. If your Tab control was set to dock type of Fill you should have the exact same layout as was on your form.
I don't think so as its not an existing tab control just an existing single page form.
Looking to add a second page to the form and a tab control to switch between them. So tab control would be new one i think, unless i'm missing something.
So, you want to add an existing TabControl to a form You should create a UserControl (and design the TabControl here) and then add the UserControl to any form you want to host the control. Or copy and paste it ;-)
Tab Controls
PhilJung
creaturita
I don't think so as its not an existing tab control just an existing single page form.
Looking to add a second page to the form and a tab control to switch between them. So tab control would be new one i think, unless i'm missing something.
LeeCripps
1. Add the TabControl - it contains two TabPages by default
2. Edit the TabPages' names via the property window of VS
3. Design the TabPages
esgargs
You can simply drag'n'drop it from the VS toolbar ...
Greets
SeanTom24
You can drag and drop it to create a new form, but that means starting again with designing form and everything.
I am try to avoid that and just add it into the existing form.
Prashweenet
So, you want to add an existing TabControl to a form You should create a UserControl (and design the TabControl here) and then add the UserControl to any form you want to host the control. Or copy and paste it ;-)