a question about tabcontrol ?
-
hi all, is it possible to hide (and show) unwanted tabs when dealing with a specific tab ? let's say i've a tabcontrol with 5 pages (first page is only required for a while) and with a button click i want to hide all other 4 pages ? then i make them show again when i need them ?
-
hi all, is it possible to hide (and show) unwanted tabs when dealing with a specific tab ? let's say i've a tabcontrol with 5 pages (first page is only required for a while) and with a button click i want to hide all other 4 pages ? then i make them show again when i need them ?
-
hi all, is it possible to hide (and show) unwanted tabs when dealing with a specific tab ? let's say i've a tabcontrol with 5 pages (first page is only required for a while) and with a button click i want to hide all other 4 pages ? then i make them show again when i need them ?
-
I suppose the
TabControl1.TabPages(1).Visible = False
Wont work in .Net Framework 1.1. As a work around you use
TabControl1.TabPages.Add() and TabControl1.TabPages.Remove()
as when you require tab pages
yes, hide and show or Visible =true or false properties are not available for TabPages, Only availble option is Remove and add again. RemoveAt(...) and RemoveByKey(...) are availble and then we can add at any time. Ravi