"Brian Takita" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I can get the HWND by using the
> Handle property.
No. That will give you the HWND of the combobox itself
Read this to understand the parts of a combobox:
http://support.microsoft.com/?kbid=65881
>
> How do you get access to the dropdown ListBox in the ComboBox?
>
As I told you; GetComboBoxInfo will give you its HWND.
You'll have to use P/Invoke since it's a Win32 function
> Claes Bergefall wrote:
> > Are you creating the ListView in response to the DropDown event?
> > Is so, try creating it with the dropdown listbox as a parent.
> > You can get the HWND of it by using GetComboBoxInfo
> >
> > Then override ListView.CreateParams and sepecify that
> > HWND as a parent
> >
> > /claes
> >
> >