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

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 6.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 6.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:


  4. 
          Sub main()
             Form1.Show vbModal
          End Sub 
  5. On Form1, add a Data Control (Data1) and a DBCombo (DBCombo1). Set the following properties:


  6. 
          Data1.DatabaseName = biblio.mdb
          Data1.Recordsource = Authors
          DBCombo1.RowSource = Data1
          DBCombo1.ListField = Author 
  7. Under the Tools menu, select Options.


  8. Select the Project Tab.


  9. Set the Main Procedure for the Startup Form.


  10. Build an executable.


  11. Run the executable.


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



REFERENCES

For additional information, click the article number below to view the article in the Microsoft Knowledge Base:

Q150210 FIX: DBCombo Control Does Not Allow Selection on Modal Form

Additional query words: vb

Keywords : kbVBp400bug kbVBp600fix kbGrpVB
Version : WINDOWS:4.0
Platform : WINDOWS
Issue type : kbbug


Last Reviewed: September 28, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.