i have a form with a button that opens a subform to enter notes. i have changed the control source on my account_num field on the form to T_Collection_Records.Account_Num because the qry behind it is now linked by account_num?? below is the current code how is it suppose to be now??
Private Sub Enter_New_Notes_Click()
[highlight #FCE94F]MyAccnt = Me!Account_Num.Value[/highlight]
DoCmd.OpenForm "Add New Account Notation", , , "[Account_Num]=''"
End Sub
Private Sub Enter_New_Notes_Click()
[highlight #FCE94F]MyAccnt = Me!Account_Num.Value[/highlight]
DoCmd.OpenForm "Add New Account Notation", , , "[Account_Num]=''"
End Sub