Question : Open combobox programmatically

Hi experts, I have a problem I want to open compobox programmatically for reproduce user click on the control. I use c# and net 2.0 compact edition

Answer : Open combobox programmatically

for CF use:

[DllImport("coredll")]
extern static int SendMessage(IntPtr hWnd, int msg, int wParam, IntPtr lParam);

and

SendMessage(comboBox1.Handle, 0x14F, 1, IntPtr.Zero);
Random Solutions  
 
programming4us programming4us