>> I am trying to get an event when the drop-down Combo Box goes away /
>> reverts back to showing a single item.
[quoted text clipped - 14 lines]
>
>DropDownClosed event of combobox must be what you're looking for.
Ahh, I see they added DropDownClosed() event for .net version 2. I
have to use version 1, so I can't use that.
That tip did lead me to the information I needed though (eg
CBN_CLOSEUP message):
http://groups.google.com/group/microsoft.public.dotnet.languages.vb/msg/b174deef
8895fc73
Changed that around a little to:
Protected Overrides Sub WndProc(ByRef m As
System.Windows.Forms.Message)
'WM_USER As Integer = &H400
'OCM__BASE As Integer = WM_USER + &H1C00
'WM_COMMAND As Integer = &H111
'OCM_COMMAND As Integer = OCM__BASE + WM_COMMAND
If m.Msg = (&H400 + &H111 + &H1C00) Then
Debug.WriteLine("WndProc Msg = " & Hex(m.Msg) & "h, LParam =
" & Hex(m.LParam.ToInt32) & "h, WParam = " & Hex(m.WParam.ToInt32) &
"h, HWnd = " & Hex(m.HWnd.ToInt32) & "h")
If (m.WParam.ToInt32 And &HF0000) = &H80000 Then
Debug.WriteLine("drop down window close message")
OnDropDownWindowClose(System.EventArgs.Empty)
End If
End If
MyBase.WndProc(m)
End Sub
Protected Overridable Sub OnDropDownWindowClose(ByVal e As
System.EventArgs)
RaiseEvent DropDownWindowClose(Me, e)
End Sub
Public Event DropDownWindowClose As EventHandler
kimiraikkonen - 21 Mar 2008 22:29 GMT
> On Fri, 21 Mar 2008 02:32:01 -0700 (PDT), kimiraikkonen
>
[quoted text clipped - 54 lines]
>
> - Show quoted text -
I think it's your time to jump .net 2.0 at least. DropDownClosed is
well-wrapped event rather than writing low-level Win32 API calls as
you described above.