Re: [python-win32] Windows drag and drop functionality

2005-05-25 Thread Mark Hammond
> If you're using native windows, you can catch the WM_DROPFILES > window message and use win32api.DragQueryFile to get the > names of dropped > files. It may also be necessary to call DragAcceptFiles. This is missing from win32gui (but has been addded), but does exist in win32ui. You may need t

Re: [python-win32] Windows drag and drop functionality

2005-05-25 Thread Tim Golden
[Nisarg Kothari] | I need a way to drag and drop file[names] from windows into | some Python based gui. The only thing I found remotely close | to what I'm looking for is Tkdnd.py, but that only works within | the program. I need support for dragging from the windows desktop | or explorer wind

[python-win32] Windows drag and drop functionality

2005-05-25 Thread Nisarg Kothari
I need a way to drag and drop file[names] from windows into some Python based gui. The only thing I found remotely close to what I'm looking for is Tkdnd.py, but that only works within the program. I need support for dragging from the windows desktop or explorer window. As I have not yet begun maki