Save a record

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jfranck
    New Member
    • Sep 2008
    • 1

    Save a record

    Hi
    Does anyone have the magic clue:
    In Access 2007, which VBA script saves a record from a form without leaving that record?
    (I want to apply a button to open a popup-subform linked to that specific record. To do so, the record needs to be saved first in order to create the correct master-child link).
    JFK
  • Megalog
    Recognized Expert Contributor
    • Sep 2007
    • 378

    #2
    Code:
    DoCmd.RunCommand acCmdSaveRecord

    Comment

    Working...