Identify selected tab on tab control

4

4110

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
 
A

Allen Browne

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.
 
4

4110

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.
 
Top