Switch between last viewed records

V

Veli Izzet

Hi,

How do I switch between two last viewed records?

Or rather go to the last Is there a shortcut key?
 
A

Allen Browne

You would need to keep a track of the records visited
(variables/array/table), using Form_Current to track each record visited.

For the new record, you would then need to use Form_AfterInsert to get the
key of the new record.

And you would need to check the Status argument of the AfterDelConfirm event
to see if you need to remove the deleted record from the log.

From there, you could provide some kind of interface to walk the log.
 
Top