BUG: Focus Events not Triggered in ActiveX Document when Using Accelerator Keys
ID: Q236778
|
The information in this article applies to:
-
Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 6.0
SYMPTOMS
When an ActiveX Document is hosted inside Internet Explorer, the focus events are not triggered when using accelerator keys to navigate the controls.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article.
MORE INFORMATIONSteps to Reproduce
- Start a new ActiveX Document project(either DLL or EXE). Default name is "Project1" and it contains one user control "UserDocument1".
- Place three labels (Label1, Label2, Label3) and two Text boxes (Text1, Text2).
- Arrange controls so that Text1 is next to Label1 and Text2 is next to Label2.
- Set the order of TabIndex as Label1, Text1, Label2, Text2, Label3.
- Change the label caption of Label1 as Label&1 and Label2 as Label&2. Remove the caption of Label3.
- Paste the following code in the UserDocument1's code:
Private Sub Text1_LostFocus()
Label3.Caption = Label3.Caption & "Text1_LostFocus "
End Sub
Private Sub Text2_GotFocus()
Label3.Caption = Label3.Caption & "Text2_GotFocus "
End Sub
- Run the project and start the component in UserDocument1.
- When using the accelerator keys ALT+1 and ALT+2, the focus can shift from Text1 to Text2, but the lost_focus event of Text1 and the get_focus event of Text2 are not triggered (while TAB triggers both of those events).
Additional query words:
ActiveX Document
Keywords : kbActiveDocs kbGrpInet kbDSupport
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbbug
|