BUG: Mouse Events Do Not Fire From ADODC
ID: Q190992
|
The information in this article applies to:
-
Microsoft Visual Basic Enterprise Edition for Windows, version 6.0
SYMPTOMS
Clicking on the ADODC during run-time will not fire the mouse events
associated with the control. It does not matter if you have the ADODC
control bound to a recordset.
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.
MORE INFORMATIONSteps to Reproduce Behavior
- Open up a standard.exe project. Form1 is created by default.
- Go to Projects/Components, and select the Microsoft ADO Data Control
(ADODC) 6.0. Drop the ADODC on the form.
- Insert the following code in the General Declarations of the Form:
Private Sub Adodc1_MouseDown(Button As Integer, Shift As Integer, x _
As Single, y As Single)
Debug.Print "Down"
End Sub
Private Sub Adodc1_MouseMove(Button As Integer, Shift As Integer, x _
As Single, y As Single)
Debug.Print "Move"
End Sub
Private Sub Adodc1_MouseUp(Button As Integer, Shift As Integer, x _
As Single, y As Single)
Debug.Print "Up"
End Sub
- Run the Visual Basic application.
- Move the mouse over the ADODC, and click a few times anywhere on the
control. Note that none of the mouse events are fired.
Additional query words:
kbdse kbDSupport kbVBp kbADO200 kbCtrl kbVBp600bug
Keywords : kbGrpVBDB
Version :
Platform : WINDOWS
Issue type : kbbug
|