Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Going to a new record. 1

Status
Not open for further replies.

ncopeland

IS-IT--Management
Joined
Mar 12, 2002
Messages
88
Location
GB
Hi

I have a piece of code that opens a form for either adding records or editing records.

I want the code to move to the new record instead of starting at the first record. In other words a new record displayed instead of the records for editing. I hope I have explained this ok.

Any help greatly received.

KR

NC
 
You can use DoCmd.GoToRecord, or you can open the form in add mode:
DoCmd.OpenForm "frmForm", , , , acFormAdd
 
Hi Remou

The Add function doesn't allow me to modify any of the other records unfortunately.

The other suggestion I don't think it allows you to say goto new record using that command.

Thanks for the help. Any other suggestions greatly received.

KR

NC
 
DoCmd.GoToRecord , , acNewRec?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top