Open Form after Last Record

R

RMires

Is it possible to open a form starting after the last record as it would
appear when opening it in data entry mode without actually opening it in data
entry mode?
 
J

Jeff Boyce

If you aren't going to put the form in data entry mode, and you are
attempting to move "past" the last record, what did you have in mind it
should show?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
R

Rick Brandt

Is it possible to open a form starting after the last record as it would
appear when opening it in data entry mode without actually opening it in
data entry mode?

In the Load event of the form...

DoCmd.RunCommand acCmdRecordsGoToNew

Not a good idea with a networked app in my opinion unless the table is
small as it will cause unnecessary network traffic.
 
Top