force after insert with VBA

  • Thread starter Thread starter mcourter
  • Start date Start date
M

mcourter

i need to force a new record to be written.
DoCmd.Save is not forcing the insert.
how can i do this?
tia.
 
yes, requery works.
now i need to get back to the newly saved record.
working with DoCmd.GoToRecord.
thanks,
mc
 
Another way is to use:

DoCmd.RunCommand acCmdSaveRecord

The current Record stays the same and you don't need to navigate back.
 
Back
Top