On the "On Got Focus" event of the control, "Scripture1", I have wrtten the following VB:
Expand|Select|Wrap|Line Numbers
- Private Sub Scriptures_GotFocus()
- If Me!Scripture1Means.Visible = False Then
- Me!Scripture1Means.Visible = True
- End If
- End Sub
"Runtime Error #438: Object doesn't support this property or method."
In the error window there is a " Help" button which, when pressed, brings this confusing message:
Not all objects support all properties and methods. This error has the following cause and solution:
You specified a method or property that doesn't exist for this Automation object.
See the object's documentation for more information on the object and check the spellings of properties and methods.
You specified a Friend procedure to be called late bound.
The name of a Friend procedure must be known at compile time. It can't appear in a late-bound call.
For additional information, select the item in question and press F1 (in Windows) or HELP (on the Macintosh)."
In the past I have successfully used the same visible method. However on Google, one of the responses indicated that, using an older version of Access (2002), sometimes Windows makes an update that causes certain controls to have to be resomethingorother. That made sense to me. My version of Access is Microsoft Access 2002 (10.6771.6830) SP3
I will be very thankful to anyone who can shed some light on this behavior.