How to detect tab selection changed event in TabControl

I tried adding handler to handle the click event in the TabControl, it works but only when you use the mouse to select the tab. Since there are other means to select a tab in a tab control liked using the arrow keys or mouse. Is there a single event that I can capture for tab selection changed?
[295 byte] By [codefund.com] at [2008-2-10]
# 1
Did you try the SelectedIndexChanged Event?
codefund.com at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms Designer...
# 2
Thanks, it works. For reason, I thought I've tried it and it didn't work.
codefund.com at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms Designer...
# 3
SelectedIndexChanged is in most controls, so always look for that one! Some other controls have more specialized Changed Events that will be more specific to that Control.

Glad you got it :)

codefund.com at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms Designer...