Thanks Unc,
The reason I’m wanting to do this is, I have a drop down list attached to a field in a subform.
The query behind the drop down is filter (ordered by) a field in another subform.
The code works fine it requeries the drop down and everyones happy.
However it return an error message when you open the form.
“You entered an expression that has an invalid reference to the property form/Report”
Press OK and the code works perfectly well.
So I suspect the code is running before the main form has completely acquired the subform.
The code is attached to ‘On Current Event”
Both of these lines work the first one cause no error message, the second one does.
Me.Parent![Lot Options subform].Requery
Me.Parent![Lot Options subform].Form![OptionID].Requery
What do you think, kind of weird isn’t it?