Combobox

  • Thread starter Thread starter Azrael
  • Start date Start date
A

Azrael

I have a simple question.

I want to press F4 button in combobox to open dropdown list. How can I
open combobox dropdown trough code by using KeyDown event?
 
I want to press F4 button in combobox to open dropdown list. How can I
open combobox dropdown trough code by using KeyDown event?

If you mean the Windows Forms ComboBox control, set the DroppedDown
property to true. But doesn't the control handle F4 itself?


Mattias
 
Mattias Sjögren je napisao/la:
If you mean the Windows Forms ComboBox control, set the DroppedDown
property to true. But doesn't the control handle F4 itself?


You're right! I haven't even tried to see if it works. Thanks.
 
Back
Top