Odd problem with SelectedIndexChanged event of TabControl
When I set the SelectedIndex of a tabcontrol programmatically, the
SelectedIndexChanged will not fire if I set the index to 0;
MyTabControl.SelectedIndex = 0
It does fire with a value of 1, but since the index is zero-based, that will
select the 2nd tab.
What can be wrong here?
--
It''''s Software Jim, but not as we know it!
.
Relevant Pages
- Re: First Item in DropDownList does not fire OnSelectedIndexChange
... course can still click the dropdown to pop up the list and reselect ... However, the SelectedIndex remains unchanged, therefore ... which will then fire an event saying that I clicked the first item. ... (microsoft.public.dotnet.framework.aspnet) - Re: First Item in DropDownList does not fire OnSelectedIndexChange
... course can still click the dropdown to pop up the list and reselect the ... However, the SelectedIndex remains unchanged, therefore not ... which will then fire an event saying that I clicked the first item. ... (microsoft.public.dotnet.framework.aspnet) - Re: TreeView AfterSelect not fired
... So why does a listbox's selectedIndex change fire, ... I have a user control that has a TreeView. ... SelectedNode does not fire AfterSelect event. ... (microsoft.public.dotnet.framework.windowsforms) - DataGrids, SortCommands and Microsoft IE WebControl TabStrips Problem
... In order to get the SelectedIndex of the tabstrip I have to wait until the ... In order to properly initialise the columns so they respond the SortCommand ... The problem I have is that if I want the events of the column to fire I ... They all do except for the SortCommand event. ... (microsoft.public.dotnet.framework.aspnet.datagridcontrol) - RE: Disabling control events
... you set the SelectedIndex of the ComboBox at initialization. ... Whenever a ComboBox's SelectedIndex changes (by selecting an item with the ... SelectedIndexChanged event will fire. ... SelectedIndexChanged event and added a handler for the event, ... (microsoft.public.dotnet.framework.windowsforms.controls) |
|