Quote Originally Posted by SuperDre View Post
grrr. even simple stuff like the routines I used for setting a DropDownCount on a normal combobox don't seem to work on a ImageCombo..

. . .

Also by replacing the cbo.hwnd (MoveWindow) with the hwnd of the childwindow "ComboBox" doesn't work..
SetWindowPos couldn't change the height of the ListBox portion either.

Quote Originally Posted by SuperDre View Post
Also SendMessage(icbo.hWnd, CB_SETMINVISIBLE, MyCount, ByVal 0) doesn't seem to work (neither the CB_GETMINVISIBLE) ...
The CB_SETMINVISIBLE message says:

Quote Originally Posted by MSDN
To use CB_SETMINVISIBLE, the application must specify comctl32.dll version 6 in the manifest.
However, MS Win Common Controls 6.0 remains unaffected even if the manifest specified comctl32.dll v6.

Quote Originally Posted by SuperDre View Post
Code:
      Call SetWindowLong(lHwnd, GWL_STYLE, GetWindowLong(lHwnd, GWL_STYLE) Or WS_DISABLED)
The EnableWindow function can also be used.