[wxPython] Drag and drop for IE links?

Hi, everyone.

I'm trying to make my wxPython app accept links dragged from the IE browser? Is anyone knowledgeable enough about the drag and drop modules to give me pointers or examples? Thanks a lot.

---- Sarino

···

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

Hi everyone,
is it possible to search backwards for text in the wxStyledTextCtrl?
The .FindText function seems to support only Wholeword and
MatchCase as options but in stc.h I found a #define
wxSTC_FIND_DOWN 1 which made me hope that there might be
some way of telling STC to search upwards.

Thank you
Christoph

Hi Christoph,

is it possible to search backwards for text in the wxStyledTextCtrl?

   Yes. Pass in a text range with the minimum position > maximum position to
do a backward search.

The .FindText function seems to support only Wholeword and
MatchCase as options but in stc.h I found a #define
wxSTC_FIND_DOWN 1 which made me hope that there might be
some way of telling STC to search upwards.

   FIND_DOWN will disappear because its intended effect is indicated by the
range parameter.

   Neil