Manfred Schulte-Oversohl wrote:

I'd like to use a combobox control. Getting it with dialog is no problem.

But I could not create a combobox on a window.

I had the same problem -- pywin32 is missing a CreateComboBox
function.

After much frustration, I found the following workaround:

   hwnd = win32gui.CreateWindow("COMBOBOX", ...)
   pycwnd = win32ui.CreateWindowFromHandle(hwnd)

--
Greg
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to