Alex Denham wrote:
Hi,
Anybody happen to know how to go about creating a COM object that
RegisterDragDrop() will actually accept?
print dropTarget
pythoncom.RegisterDragDrop(_id, dropTarget)
Traceback (most recent call last):
File "C:\Python25\DragAndDrop.py", line 82, in
main()
I haven't checked anything from wxWidgets and i don't intend to (yet).
I have found many functions that appear to help with dragging and dropping in
Windows, but practically no documentation to go with.
Piecing bits together from google, msdn, PyWin32 documentation, Python
Programming on Win32, h
I might be greatly misinterpreting what you're trying to do here, but
RegisterDragDrop registers a window, not a com object. The drop target
instance would be
associating the target with that particular window. Have you checked out
wxDropTarget?
From: [EMAIL
Hi,
Anybody happen to know how to go about creating a COM object that
RegisterDragDrop() will actually accept?
print dropTarget
pythoncom.RegisterDragDrop(_id, dropTarget)
Traceback (most recent call last):
File "C:\Python25\DragAndDrop.py", line 82, in
main()
File "C:\Python25\DragA