-
Tab Page question
I am working on a project that I use a tab page withe 3 tabs. I have the first page done and would like to release it soon, but want to start working on the next page. My question is if there is a way to make the 2nd tab page not visible so I can give the program to the line so they don't see anyting on that page but are able to use the first page of the tab page?
-
apparently setting visible to false doesnt do anything. Maybe you have to do tabcontrol.tabpages.remove(the ones you dont want to show up) to remove the tab page at run time:rolleyes:
-
Well setting the tab control visible to false makes the whole thing invisible When I still need to see the first page, BUT i did find a solution. I went into the Windows Form Designer area and went to the tab control and just REMed out the statement that adds that page so at run time it doesn't show up, and during design time I just unREM it back towork with it.