Record manipulation

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

How can I move form A to the last record from form B programmatically?

Thanks

Regards
 
Hi

How can I move form A to the last record from form B programmatically?

Thanks

Regards

In what ever event on FormB you are opening the FormA from:
Docmd.OpenForm "FormA", , , , , , "Last"

In FormA's Load event:
If Me.OpenArgs = "Last" Then
DoCmd.RunCommand acCmdRecordsGoToLast
End If
 
Back
Top