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.





.
 
Back
Top