BUG: OLE AutoActivate Property Fails When Set To "1 - GotFocus" (169611)
The information in this article applies to:
- Microsoft Visual Basic Control Creation Edition for Windows 5.0
- Microsoft Visual Basic Learning Edition for Windows 5.0
- Microsoft Visual Basic Learning Edition for Windows 6.0
- Microsoft Visual Basic Professional Edition for Windows 5.0
- Microsoft Visual Basic Professional Edition for Windows 6.0
- Microsoft Visual Basic Enterprise Edition for Windows 5.0
- Microsoft Visual Basic Enterprise Edition for Windows 6.0
- Microsoft Visual Basic Standard Edition for Windows 4.0
- Microsoft Visual Basic Professional Edition for Windows 4.0
- Microsoft Visual Basic Enterprise Edition for Windows 4.0
This article was previously published under Q169611 SYMPTOMS
The Visual Basic OLE Container Control has an AutoActivate property that
enables a user to activate an OLE object in different ways. Setting this
property to "1 - GetFocus" does not automatically activate the application
that provides the OLE object when the OLE container control receives the
focus.
RESOLUTION
To work around this bug, code needs to be added to the OLE Container
Control's GotFocus event to automatically activate the application that
provides the OLE object when the control receives the focus. The following
code makes the OLE Container Control behave as though its AutoActivate
property were set to "1 - GotFocus":
Private Sub OLE1_GotFocus()
OLE1.DoVerb (vbOLEShow)
End Sub
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. We are researching this bug and will post
new information here in the Microsoft Knowledge Base as it becomes
available.
REFERENCES
For more information about the DoVerb method of OLE Container control
search the on-line Help for the topic "DoVerb."
Modification Type: | Major | Last Reviewed: | 6/24/2004 |
---|
Keywords: | kbBug KB169611 |
---|
|