Which "page" has the focus???

  • Thread starter Thread starter Hal
  • Start date Start date
I don't think there's any native method to really do this... but you could
do something like this (on a form with a single page break)..

function pge(ctl as control) as integer
if ctl.top < Me.ctlBreak.top Then
pge=1
else
pge=2
endif
end function

....and then just feed that function the active control.
 
Back
Top