Subform Headache
The problem goes like this:
I have a Form with orders and a Subform with products.
When there are no order records ( in the beggining) the
form desapears (in Form View). That case I want the Form to
be in DataEntry mode. i do this:
Me.AllowAdditions = True
Me.DataEntry = True
ok but when I do that:
Me.sfrmProducts.Form.AllowAdditions = True I get an ERROR
2455 "You entered an expression that has an invalid reference to the property Form/Report"
It does the same thing when I :
Dim sfrm as Form
Set sfrm = Me.sfrmProducts.Form
What's wrong about it
GregoryHu
|