Does anyone know how to force list of a datacombo box to dropdown? The SendMessage(Combo1.hwnd, CB_SHOWDROPDOWN, True, 0) works great with a regular combo box but this doesn't seem to work with datacombo boxes. Any ideas???
Printable View
Does anyone know how to force list of a datacombo box to dropdown? The SendMessage(Combo1.hwnd, CB_SHOWDROPDOWN, True, 0) works great with a regular combo box but this doesn't seem to work with datacombo boxes. Any ideas???
Try using the SendKeys statement
e.g.
' Show the Data Combo drop down list
DataCombo1.SetFocus
Call SendKeys("%{DOWN}")