FIX: ComboBox Events Do Not Fire When Contained in a FrameID: Q181310
|
The ComboBox Click and Change events do not fire when the control is contained in a Frame control.
Microsoft has confirmed this to be a problem in the Microsoft products listed
at the beginning of this article.
This problem was corrected in Windows CE Toolkit for Visual Basic 6.0.
Option Explicit
Dim x
Private Sub Form_Load()
For x = 1 to 8
Combo1.AddItem "Item" & x
Next
End Sub
Private Sub Combo1_Click()
MsgBox "Text: " & Combo1.Text
End Sub
Private Sub Combo1_Change()
MsgBox "Text: " & Combo1.Text
End Sub
Additional query words: VBCE VBCE5 VBCE6
Keywords : kbToolkit kbVBp kbVBp500bug kbVBp600fix kbWinCE kbWinCE100 kbGrpVB
Version : WINDOWS:1.0
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: February 24, 1999