Microsoft KB Archive/173212

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 10:06, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 173212

Article Last Modified on 12/10/2003



APPLIES TO

  • Microsoft Visual Basic 5.0 Control Creation Edition, when used with:
    • Microsoft Windows 2000 Standard Edition
    • Microsoft Windows 98 Standard Edition
    • Microsoft Windows NT 4.0
  • Microsoft Visual Basic 5.0 Learning Edition, when used with:
    • Microsoft Windows 2000 Standard Edition
    • Microsoft Windows 98 Standard Edition
    • Microsoft Windows NT 4.0
  • Microsoft Visual Basic 5.0 Professional Edition, when used with:
    • Microsoft Windows 2000 Standard Edition
    • Microsoft Windows 98 Standard Edition
    • Microsoft Windows NT 4.0
  • Microsoft Visual Basic 5.0 Enterprise Edition, when used with:
    • Microsoft Windows 2000 Standard Edition
    • Microsoft Windows 98 Standard Edition
    • Microsoft Windows NT 4.0



This article was previously published under Q173212

SYMPTOMS

When you use either the Slider control or the ListView control provided by the COMCTL32.OCX (version 5.00.3717, 5.00.3828, or 6.00.8022), the "Default" property of a command button is ignored. No error occurs, but the button's Click event is not executed.

This behavior only occurs under the Windows NT, Windows 98, Windows Me, and Windows 2000 operation systems. This does not occur under Windows 95.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been fixed in Visual Basic 6.0.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a new Standard EXE project. Form1 is created by default.
  2. Add a reference to the "Windows Common Controls" (COMCTL32.OCX).
  3. Add a CommandButton on to the default form.
  4. Set the Default property of the CommandButton to True.
  5. Paste the following code in the code window of the form:

          Private Sub Command1_Click()
             MsgBox "Click Event Has Been Fired"
          End Sub
                        
  6. Place a TextBox, ListView, and a Slider control on the form.
  7. Save and run the application.
  8. Set the focus on the TextBox and press the ENTER key.

    RESULT: The CommandButton's Click event fires and the message box appears as expected.
  9. Set the focus on either the Slider or the ListView controls.
  10. Press Enter.

    RESULT: The CommandButton's Click event does not fire and the message box does not appear.


Keywords: kbbug kbcontrol kbfix kbvbp600fix KB173212