Connecting Tech Pros Worldwide Help | Site Map

Problem with tab control event

  #1  
Old March 8th, 2007, 12:55 AM
Mark F.
Guest
 
Posts: n/a
I have two tab controls (four tabpages each) and each tab control is in a
splitter panel (horiz orientation). I added a event handlers to handle the
selected tab event. The upper tab control works when every tab is selected.
The lower tab control only seems to work when the first three tabs are
selected, not the last.

Any ideas why?

Thanks,
Mark


  #2  
Old March 9th, 2007, 09:25 PM
Jay Riggs
Guest
 
Posts: n/a

re: Problem with tab control event


On Mar 7, 4:43 pm, "Mark F." <reply2gr...@nospam.comwrote:
Quote:
I have two tab controls (four tabpages each) and each tab control is in a
splitter panel (horiz orientation). I added a event handlers to handle the
selected tab event. The upper tab control works when every tab is selected.
The lower tab control only seems to work when the first three tabs are
selected, not the last.
>
Any ideas why?
>
Thanks,
Mark

Mark,

I created a VS.NET 2003 WinForm project, added a panel and to the
panel a tab, a splitter (oriented as horizontally) and another tab.

I wired both tab controls to its SelectedIndexChanged event and on
clicking each TabPage in both tabs the event fired.

I then wired the TabIndexChanged event for both tabs and found that
this event didn't fire for any TabPage for either tab. I'm not sure
why, perhaps I don't understand what the event is supposed to do
exactly.

For fun (or at least what passes for fun for me these days) I had both
tabs SelectedIndex property display when the SelectedIndexChanged
events fired. I noticed that the SelectIndex was changing, yet
changing the index via a mouse click wasn't firing the TabIndexChanged
event.

I was going to post my project but saw that it would have been pretty
much illegible. If you're not using the SelectedIndexChanged event
for your tab controls, perhaps that's you're solution.

-Jay

  #3  
Old March 10th, 2007, 03:45 PM
Mark F.
Guest
 
Posts: n/a

re: Problem with tab control event


"Jay Riggs" <jay.s.riggs@gmail.comwrote in message
news:1173474598.612690.206010@p10g2000cwp.googlegr oups.com...
Quote:
I created a VS.NET 2003 WinForm project, added a panel and to the
panel a tab, a splitter (oriented as horizontally) and another tab.
>
I wired both tab controls to its SelectedIndexChanged event and on
clicking each TabPage in both tabs the event fired.
>
I then wired the TabIndexChanged event for both tabs and found that
this event didn't fire for any TabPage for either tab. I'm not sure
why, perhaps I don't understand what the event is supposed to do
exactly.
>
For fun (or at least what passes for fun for me these days) I had both
tabs SelectedIndex property display when the SelectedIndexChanged
events fired. I noticed that the SelectIndex was changing, yet
changing the index via a mouse click wasn't firing the TabIndexChanged
event.
>
I was going to post my project but saw that it would have been pretty
much illegible. If you're not using the SelectedIndexChanged event
for your tab controls, perhaps that's you're solution.
>
-Jay
>
Thanks Jay,

I simply wanted to display the current view (tabpage) on a statusbar pane.
private void viewsTabControl_SelectedIndexChanged(object sender, EventArgs
e)
{
sbrViewPane.Text = viewsTabControl.SelectedTab.Text;

// or ...,

// sbrViewPane.Text =
viewsTabControl.TabPages[viewsTabControl.SelectedIndex].Text;
}

I think that I found the trouble. One view is a picturebox control that
previews an image file if the user selects one. I used the OnPaint event to
draw text in the view if the user clicks the tab and no image is loaded (ie,
"No image selected"). When I commented out the Paint code block the
SelectedIndexChanged event fires normally for the preview tabpage. I still
don't know why this behavior is occurring however.

Mark






Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Wierd problem with tab alignment and button leave event Flack answers 0 November 17th, 2005 03:48 AM
tab control and tab changed Lance Johnson answers 9 November 15th, 2005 11:17 AM
ListView on Tab Control - a workaround tom answers 2 November 12th, 2005 03:18 PM
IE - problem with Tab Strip control rendered by aspx page? Pino Carafa answers 1 November 4th, 2005 08:25 PM