I have this problem with Access 2010:
Thre is a Navigation Form, I use to register a sequence od data . On one of the navigation subforms, I select data from a a table, and if the data I need does't exist I need:
1. To pass an info to another form;
2. open the aother form (pop-up over the NavigationForm), and enter the information,
3. close the form and continue with the NavForm ..
In the other forms (regular) I use the code:
Forms![FILE_CUST].[SendWho]=Me.Name
DoCmd.OpenForm "FILE_CUST"
But with the NavForm I get teh Message:
" xxxx cannot find the referenced form 'FILE_CUST'" , and stops at the line:
Forms![FILE_CUST].[SendWho]=Me.Name
Is there a way to resolve this?
Thre is a Navigation Form, I use to register a sequence od data . On one of the navigation subforms, I select data from a a table, and if the data I need does't exist I need:
1. To pass an info to another form;
2. open the aother form (pop-up over the NavigationForm), and enter the information,
3. close the form and continue with the NavForm ..
In the other forms (regular) I use the code:
Forms![FILE_CUST].[SendWho]=Me.Name
DoCmd.OpenForm "FILE_CUST"
But with the NavForm I get teh Message:
" xxxx cannot find the referenced form 'FILE_CUST'" , and stops at the line:
Forms![FILE_CUST].[SendWho]=Me.Name
Is there a way to resolve this?