ComboBox - mousedoubleclick event

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?RWQgQ29oZW4=?=

    ComboBox - mousedoubleclick event

    I am having trouble getting any of the combo boxes to respond to a mouse
    double click. Nothing happens! I do get a response using the mousedown event,
    but not a mousedouble click event. I am using VS 2005, VB.NET. I had no
    problem with Access VBA 2000 with this kind of event.

    I have tried doing it manually. Here is the code:

    In the form load event

    AddHandler ChurchComboBox. MouseDoubleClic k, AddressOf ComboBoxDoubleC lick



    Private Sub ComboBoxDoubleC lick(ByVal sender As Object, ByVal e As
    System.Windows. Forms.MouseEven tArgs) Handles ChurchComboBox. MouseDoubleClic k
    MessageBox.Show ("church")
    End Sub

    But nothing ever happens. I can get text boxes to respond to a double click
    event, but never any combo boxes. Is there something I have forgotten?

    Ed Cohen

Working...