The information in this article applies to:
SYMPTOMSUsing form.control.property to access the property of a control causes a "Property or Control not found" error. CAUSEThe control was passed to the Sub or Function procedure incorrectly. RESOLUTIONTo reference a control in a Sub or Function procedure, do not pass the form and then the control; just pass the control. Then once you pass the control to the Sub or Function procedure, do not prefix the control name with the parent form name when accessing a property of the control inside the Sub or Function procedure. MORE INFORMATIONHow to Pass a Control to a Sub or Function ProcedureTo pass a control to a Sub or Function procedure, provide the parameter by specifying Formname.Controlname or just Controlname as in this example:
-or-
Either way, the appropriate information is passed to the Sub procedure. How
you call it depends on where you call it.
How to Pass a Form to a Sub or Function ProcedureWhen you pass a parameter As Form, the Sub procedure expects the item following the form variable to be a property of that form object:
The item that follows X must be a property of the form variable X.
Referencing a Property of a Control When the Control is Not PassedThe full syntax to access a property of a control on a form is:
If the control whose property you are accessing is on the form where the
code resides, you do not need to prefix the control name with the form
name. For example, if command button Command1 is on Form1 and you want to
set its Enabled property to False (0) in the event procedure
Command1_Click, you can use the following:
You can use the same syntax if the statement is in the general
Declarations section of Form1.
However, if you want to access the Enabled property of a Command1 control that resides on a form other than its parent form, or if you want to access that property from a Sub or Function procedure in a module without passing the control to the procedure, use the full syntax with the form name. For example, to disable Command1, which is on Form1, in MODULE1.BAS, add the following code:
Additional query words: 2.00 3.00
Keywords : |
Last Reviewed: January 25, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |