DoCmd.OpenForm method - go straight to EOF ( recordset ) ?

liamfitz

Registered User.
Local time
Today, 18:07
Joined
May 17, 2012
Messages
240
Can I use the OpenForm method, to open my form based on a query, and go IMMEDIATELY to EOF i.e. ready to add a new record ? Here's my current statement, with just the query name to qualify it. Thanks.
Code:
DoCmd.OpenForm "frmClients", , qry1
:)
 
In Form Load event put the code.

DoCmd.GoToRecord,,acNewRec
 
Muchos gracias Mstef. It works perfectly !:D
 

Users who are viewing this thread

Back
Top Bottom