Go to last page on form

  • Thread starter Thread starter Sok Hong
  • Start date Start date
S

Sok Hong

Hello,

I am trying to set the form, so that when it opens it goes
to the last page on the form automatically. Any clue on
how I can go about doing this?
 
If you mean go to last RECORD, then put this into the on Open event of the
form:

DoCmd.GoToRecord , , acLast
 
create a macro telling it to "go to last page" on open.

1. Click Macros, New
2. Choose Action "GoToPage"
 
Oops...ok, continuing:

Then in design mode on the form, choose properties,
Choose "Event" Choose "On Open" and point it to your
macro you created.
 
Back
Top