Sync for information

  • Thread starter Thread starter Larry
  • Start date Start date
L

Larry

I have a button on my main form that opens so the user
can add financial information. How can I sync the pop-up
form record to match the main forms.
Thanks
 
Hi Larry

The general expression would be as follows:


Private Sub RecordID_Click()

DoCmd.OpenForm "frmDetails", _
WhereCondition:="RecordID=" & Me.RecordID

End Sub

Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.
 
Maurice,
I will give that a try.
Thank you..
-----Original Message-----
Hi Larry

The general expression would be as follows:


Private Sub RecordID_Click()

DoCmd.OpenForm "frmDetails", _
WhereCondition:="RecordID=" & Me.RecordID

End Sub

Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.





.
 

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

Back
Top