-----Original Message-----
The problem usually lies in the difference between the name of the subform
and the subform CONTROL on the main form. You never actually reference the
name of the subform, but rather the control on the mainform which holds the
subform. These may have different names and it is necessary to get the
right one. The general form is:
Forms!Form1!subControl1.Form!ControlOnSubform
Without knowing more about your system, I can't say any more.
On my website (see sig below) is a small sample database called
"SubformReference.mdb" which illustrates this and a lot of other things that
have to do with referencing subforms and subsubforms.
--
--Roger Carlson
www.rogersaccesslibrary.com
Reply to: Roger dot Carlson at Spectrum-Health dot Org
Hello
I have sub_FormA in Form_A
When I enter [Forms]![Form_A]![sub_FormA]
Forms([Forms]![Form_A]![sub_FormA]
).AllowsAddition
I have the error:
Forms sub_FormA not found
What is the problem
.