J John Mar 6, 2004 #1 Hi How can I move form A to the last record from form B programmatically? Thanks Regards
F fredg Mar 6, 2004 #2 Hi How can I move form A to the last record from form B programmatically? Thanks Regards Click to expand... 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
Hi How can I move form A to the last record from form B programmatically? Thanks Regards Click to expand... 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