As far as I know, Combobox consists of two components: Edit and ListBox. How can I get Handle of Combobox, if I have handle of it’s Edit field ?
I tried to use GetWindow(MyHandle, GW_HWNDNEXT), where MyHandle is that handle of Edit that I know, but the result is always 0. Someone have any ideas?
Thx a lot.
The Edit window is a child of the ComboBox window: Use
GetParent.