Error Can't find form.

Bears84

Registered User.
Local time
Yesterday, 18:38
Joined
Dec 12, 2005
Messages
25
Why is this telling me it can not find the form?

Private Sub booleanInScope_Click()
[booleanInScope] = Forms![subfrmCoordinatorApproval]![txtID]
End Sub

The form is in the forms and I can open it in form view
 
Is the form open when you run the code? You can't refer to it if it's not open. You can open it "hidden"; it's one of optional argument after the OpenForm syntax; dont' remember how many commas you need to get to "acHidden" parameter, though.
 

Users who are viewing this thread

Back
Top Bottom