Running procedure on Navigation Button's click

G

Garu

Hi,

Is it possible to run a procedure when Next or Previous button of the
built-in navigation button (located at the bottom of the window) is clicked?
I can't seem to find it in the Form's event properties.

Thanks.

Garu
 
G

Garu

I used 'On Current' event and it works but not sure if that's the right bit
to use.
 
N

NG

Hi,

the "On current" event is triggered each time another record gets the focus,
so it's perfect for the next and previous button, but it also fires on the
goto first or goto last record, or when the form is opened and the first
displayed record gets the focus, but most of the time that is just whet you
want, so I think the OnCurrent is the right event for your purposes.
 
Top