current page index

  • Thread starter Thread starter alekm
  • Start date Start date
A

alekm

Hi,
I've got a tab control on a form. For example I'm writing code for event
procedure for check box control on a one of several pages in a tab control
How can I determine in VB code what the index of a page I'm currently in,
is? Of course I know it myself, or I can check it in properties but I want to
determine it from VB code. Is that possible? I need something like when I'm
determing current user with currentuser function. Is there something like
currentPageIndex?
Thanx

alekmil
 
On Tue, 11 May 2010 07:27:01 -0700, alekm

Me.myTablControl.Value
This is the 0-based index of the selected tab.

-Tom.
Microsoft Access MVP
 
Thanx!

Tom van Stiphout said:
On Tue, 11 May 2010 07:27:01 -0700, alekm

Me.myTablControl.Value
This is the 0-based index of the selected tab.

-Tom.
Microsoft Access MVP


.
 
Back
Top