Tab Control
-
I am developing an application in VS2003, using a tabcontrol with collection of 5 tabpages, onload I have tabpage1 as main menu, on mainmenu I want picture boxes to link to other tab pages,I have linked the picture box click event to tabPage show method, but not working. note: If I moved the tabpage 1(main menu) to last index then its working.. Does the tabPage index and click events are related? Please help me. Aruna
-
I am developing an application in VS2003, using a tabcontrol with collection of 5 tabpages, onload I have tabpage1 as main menu, on mainmenu I want picture boxes to link to other tab pages,I have linked the picture box click event to tabPage show method, but not working. note: If I moved the tabpage 1(main menu) to last index then its working.. Does the tabPage index and click events are related? Please help me. Aruna
You should set tabControl.SelectedIndex instead of using tabPage.Show() method.
-
You should set tabControl.SelectedIndex instead of using tabPage.Show() method.
Hey, How would I implement a tab control in VS2005? I don't think there is a tabbed control in .NET 2.0?? Cheers.
-
Hey, How would I implement a tab control in VS2005? I don't think there is a tabbed control in .NET 2.0?? Cheers.
ma se wrote:
I don't think there is a tabbed control in .NET 2.0??
You can find it on the "All Windows Forms" tab in the Toolbox.
-
ma se wrote:
I don't think there is a tabbed control in .NET 2.0??
You can find it on the "All Windows Forms" tab in the Toolbox.
Sorry, I meant for web applications. Everyone says that I must use the multi view control, or something like that.
-
You should set tabControl.SelectedIndex instead of using tabPage.Show() method.
Thanks again, your code is working fine
-
You should set tabControl.SelectedIndex instead of using tabPage.Show() method.
Thanks Andrew Lygin. Its solved my problem too. :-D Regards.
_____________________________ Success is not something to wait for, its something to work for.