Re: Python Editor or IDE ActiveX control

2010-08-27 Thread Michel Claveau - MVP
Hi!

Scintilla come like a control (a piece for a window), raleted to the
file SciLexer.DLL
For call the scintilla-componant, use messages. Example :
   SendMessage(Sci, SCI_GOTOLINE, line, 0)
For the constant SCI_GOTOLINE, I suggest  scintillacon.py, include in
Pywin32.

@-salutations
-- 
Michel Claveau 
-- 
http://mail.python.org/mailman/listinfo/python-list


Python Editor or IDE ActiveX control

2010-08-26 Thread Sathish S
Hi Ppl,

Is there any python IDE or editor that has an ActiveX control which could be
embed in other Windows applications. I'm basically looking to write a
application that can show the indentations of python, change the color of
keywords etc on a application, which will save this python script and run it
from command prompt.

Thanks,
Sathish
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python Editor or IDE ActiveX control

2010-08-26 Thread Thomas Jollans
On Thursday 26 August 2010, it occurred to Sathish S to exclaim:
 Hi Ppl,
 
 Is there any python IDE or editor that has an ActiveX control which could
 be embed in other Windows applications. I'm basically looking to write a
 application that can show the indentations of python, change the color of
 keywords etc on a application, which will save this python script and run
 it from command prompt.

It sounds to me like you're just looking for any old halfway decent embeddable 
programmer's editor that happens to have syntax definitions for Python.

I'd suggest you have a look at Scintilla. Quite a good editing control, I 
don't think it comes wrapped in ActiveX or anything like that, just interface 
it in your favourite language using the DLL's C API.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python Editor or IDE ActiveX control

2010-08-26 Thread Stef Mientki
 On 27-08-2010 00:22, Thomas Jollans wrote:
 On Thursday 26 August 2010, it occurred to Sathish S to exclaim:
 Hi Ppl,

 Is there any python IDE or editor that has an ActiveX control which could
 be embed in other Windows applications. I'm basically looking to write a
 application that can show the indentations of python, change the color of
 keywords etc on a application, which will save this python script and run
 it from command prompt.
 It sounds to me like you're just looking for any old halfway decent 
 embeddable 
 programmer's editor that happens to have syntax definitions for Python.

 I'd suggest you have a look at Scintilla. Quite a good editing control, I 
 don't think it comes wrapped in ActiveX or anything like that, just interface 
 it in your favourite language using the DLL's C API.
Scintilla is full embedded in wxPython.
cheers,
Stef
-- 
http://mail.python.org/mailman/listinfo/python-list