Tab control - How to determine which page is visible

A

Allen Browne

Compare the Value of the tab control to the PageIndex of the page.

For example, to see if Page9 is the current page of Tab1:

If Me.Tab1.value = Me.Page9.PageIndex Then
 
Top