H Hal Mar 11, 2005 #1 Is there any way to check which page has the focus when using the "Page Break"? TIA Hal
R Rob Oldfield Mar 12, 2005 #2 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.
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.