Identify selected tab on tab control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to initiate actions based on which tab is selected on a tab
control. How do I know which tab is clicked?

Thanks
 
The tab control has a Value indicating which page is active.
It will match the PageIndex of the page.

The tab control's Change event fires when another page is chosen.
 
Allen,

Excellent. Thank you very much. I don't know how I missed it. Instead I
zeroed in on the click event and thought that it should fire when I clicked
on a different tab. Anyway you have me going forward.

Thanks again.
 
Back
Top