
Combo Box Dropdown List Width
Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd
As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Dim lRetVal As Long
Dim lDropListWidth As Long
lDoprListWidth = ListWidth_In_Pixels
lRetVal = SendMessage(Combo.hWnd, CB_SETDROPPEDWIDTH, lDropListWidth, 0&)
-Rob
Quote:
>Anyone out there have any ideas on how to make the combo box
>dropdown list wider than the combo box itself? Any suggestions
>would be helpful. By the way, I'm still using vb3.
>Thanks
>Mike.........