Record manipulation

J

John

Hi

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

Thanks

Regards
 
F

fredg

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
 
Top