Sync for information

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
 
S

StCyrM

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.
 
L

Larry

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.





.
 
Top