RexesOperator
Registered User.
- Local time
- , 22:30
- Joined
- Jul 15, 2006
- Messages
- 604
I have a main form frmAddNewTransactions and a separate POPUP form frmCompanyList. I am trying to set up a routine such that clicking once on a field in the popup form will load the appropriate fields in the main form.
So far I have:
Private Sub txtContactID_Click()
Form!frmAddNewTransactions!txtContactID = Form!frmCompanyList!txtContactIDPOPUP
End Sub
I also tried
Forms!frmAddNewTransactions!txtContactID = Forms!frmCompanyList!txtContactIDPOPUP
This doesn't work. I am sure I am missing something simple here (as usual). I am using Access 2003.
So far I have:
Private Sub txtContactID_Click()
Form!frmAddNewTransactions!txtContactID = Form!frmCompanyList!txtContactIDPOPUP
End Sub
I also tried
Forms!frmAddNewTransactions!txtContactID = Forms!frmCompanyList!txtContactIDPOPUP
This doesn't work. I am sure I am missing something simple here (as usual). I am using Access 2003.