Switch between last viewed records

  • Thread starter Thread starter Veli Izzet
  • Start date Start date
V

Veli Izzet

Hi,

How do I switch between two last viewed records?

Or rather go to the last Is there a shortcut key?
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top