Главная страница | назад





Article #17555: Dropping a combobox's list in code.

 Question and Answer Database
FAQ2555D.txt Dropping a combobox's list in code.
Category :Windows API
Platform :All
Product :All 32 bit
Question:
How do I get a ComboBox to drop down its list box in code?
Answer:
Send the ComboBox a CB_SHOWDROPDOWN message, passing a 1 (true) in
the WParam parameter to drop the list down, or a 0 (false) to hide it.
procedure TForm1.Button1Click(Sender: TObject);
begin
SendMessage(ComboBox1.Handle,
CB_SHOWDROPDOWN,
1,
0);
ComboBox1.SetFocus;
end;
7/16/98 4:31:28 PM

Last Modified: 01-SEP-99