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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top