I have read several other post on this but I still don't get it. I have a database that is based on the templet with Access 2000 for Contact Management. I have a form Calls that is used to filter all calls by an individual. On that form I have a subform, the control called cntlsubListingSubform, which contains the subform Call Listing Subform. On the Call Listing Subform I have a control called cntlsubDetailsSubform which contain the subform Call Details Subform. When I open Calls I send it a Caller ID so if filters all the calls for an individual. In the Call Listing Subform I enter new calls for an individual and Before Update I check to make sure the fields that are required are filled with the IsNull(Me.cntlname) code. That works fine. The problem is that the subform on Call Listing Subform is the Call Details Subform which also has a field that is required to be filled. No matter what I try I can't get that piece of code to run. Below are some samples of what I have tried. I keep getting errors that either it can't find the form or it was an invalid reference to the property for Form/Report. Help!!!!
Also, is there an easier way? I tried to put Validation of the control on the subform Call Detail Subform.txtNotes that said Is Not Null and a Validation String that said 'The Notes Field must be filler', but that doesn't every seem to run. It seems like that would be the easiest way but it won't run... Why?
Thanks in advance...
What I have tried from the code module on the Call List Subform...
Me!cntlsubDetailsSubform.Form!txtNotes
Forms![call listing subform].[cntlDetailsSubform].Form![txtNotes]
Forms![Calls].[cntlsubListingSubform].form![cntlsubDetailsSubform].Form![txtNotes]
Also, is there an easier way? I tried to put Validation of the control on the subform Call Detail Subform.txtNotes that said Is Not Null and a Validation String that said 'The Notes Field must be filler', but that doesn't every seem to run. It seems like that would be the easiest way but it won't run... Why?
Thanks in advance...
What I have tried from the code module on the Call List Subform...
Me!cntlsubDetailsSubform.Form!txtNotes
Forms![call listing subform].[cntlDetailsSubform].Form![txtNotes]
Forms![Calls].[cntlsubListingSubform].form![cntlsubDetailsSubform].Form![txtNotes]