B Bears84 Registered User. Local time Yesterday, 18:38 Joined Dec 12, 2005 Messages 25 Jul 26, 2006 #1 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
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
B Banana split with a cherry atop. Local time Yesterday, 16:38 Joined Sep 1, 2005 Messages 6,318 Jul 26, 2006 #2 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.
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.