FIX: DBCombo's Drop-Down Does Not Work with Mouse in Modal Form

Last reviewed: October 30, 1997
Article ID: Q172275
The information in this article applies to:
  • Microsoft Visual Basic Professional and Enterprise Editions for Windows, version 4.0

SYMPTOMS

The mouse does not select items in the drop-down combo box of DBCombo on a Modal Form in an executable.

RESOLUTION

To resolve this problem, upgrade to Visual Basic 5.0.

In Visual Basic 4.0, the following code will work around the problem:

   Private Sub Form_Initialize()
   ' Loop thru each form in the FormS collection
   For Each Form in Forms
     'Find each form that is not the current form
     If Form.Name <> Me. Name Then
       Form. Enabled = True ' and Disable it
     End If
   End Sub

  Private Sub Form_Unload()
  ' Loop thru each form in the FormS collection
  For Each Form in Forms
    'Re-enable all the forms in the FormS collection
    If Form.Name <> Me. Name Then
      Form. Enabled = True
    End If
  End Sub

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been corrected in Microsoft Visual Basic Professional and Enterprise editions, version 5.0.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a New Project in Visual Basic 4.0.

  2. Insert a module.

  3. Add the following code:

          Sub main()
             Form1.Show vbModal
          End Sub
    
    

  4. On Form1, add a Data Control (Data1) and a DBCombo (DBCombo1). Set the following properties:

          Data1.DatabaseName = biblio.mdb
          Data1.Recordsource = Authors
          DBCombo1.RowSource = Data1
          DBCombo1.ListField = Author
    

  5. Under the Tools menu, select Options.

  6. Select the Project Tab.

  7. Set the Main Procedure for the Startup Form.

  8. Build an executable.

  9. Run the executable.

  10. Drop down the combo box, try to select an option.


Additional query words: vb
Keywords : VB4WIN
Version : WINDOWS:4.0
Platform : WINDOWS
Hardware : x86
Issue type : kbbug
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 30, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.