open form as a tab in windows applications
-
hi all i use a visual studio 2010 to develop a windows application, i want to open all forms in my application as a tab (not pop up), like the tabs in visual studio it self. and when i click on it open it as a pop up form. whats control that can i use it in visual studio 2010 and how to do this?? thanks all
-
hi all i use a visual studio 2010 to develop a windows application, i want to open all forms in my application as a tab (not pop up), like the tabs in visual studio it self. and when i click on it open it as a pop up form. whats control that can i use it in visual studio 2010 and how to do this?? thanks all
TabControl works for me - you will find it in your toolbox.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
-
TabControl works for me - you will find it in your toolbox.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
ok, but if i click a tab i want to open it as a pop up form how can do this
-
ok, but if i click a tab i want to open it as a pop up form how can do this
If you aren't going to use the tabs to display the data, then don't use tabs at all - users are used to tabs and what they do, if you start going wildly away from that then they can get confused. If you just want a list of files you can click and open in a pop-up, then consider a toolstrip instead, and make each file a button.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
-
If you aren't going to use the tabs to display the data, then don't use tabs at all - users are used to tabs and what they do, if you start going wildly away from that then they can get confused. If you just want a list of files you can click and open in a pop-up, then consider a toolstrip instead, and make each file a button.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
ok, when you use visual studio 2010 and open a form.cs[Design], if you click a double click on the form.cs[Design] this must shown in pop up from and if drag-and-drop it to tap the form return to be a tab.
-
hi all i use a visual studio 2010 to develop a windows application, i want to open all forms in my application as a tab (not pop up), like the tabs in visual studio it self. and when i click on it open it as a pop up form. whats control that can i use it in visual studio 2010 and how to do this?? thanks all