Re: [python-win32] Event log exception reporting with services

2007-04-04 Thread Mark Hammond
I can't reproduce this. If I change win32\Demos\service\pipeTestService.py to raise an error in the SvcDoRun() function, after starting the service I see the exception in the event log. Were both 2.4 and 2.5 installed with admin rights? Mark > -Original Message- > From: [EMAIL PROTECTED

Re: [python-win32] How to figure out the COM object name?

2007-04-04 Thread Michael March
Just a quick follow-up.. Since getting past the issue of how to determine the name of the COM object... my programming adventures of scripting to access Mercury Quality Center has been insanely great. The first thing I did was 'port' some of the VB examples to Python and just in number of lines th

Re: [python-win32] C# Vs Python

2007-04-04 Thread Chris Mellon
On 4/4/07, Michael Foord <[EMAIL PROTECTED]> wrote: > Trent Nelson wrote: > >> Where CPython beats IronPython is cross-platform capabilities. > >> > > > > IronPython can use standard CPython modules though, right? I've dropped > > my ipy.exe in C:\Python25 and it doesn't seem to have a problem wit

Re: [python-win32] C# Vs Python

2007-04-04 Thread Michael Foord
James Matthews wrote: > I am looking into IronPython however first i am going to learn .NET to > see what it has to offer IronPython is a *great* way to learn .NET. Particularly via the interactive interpreter. Instantiating and configuring classes is a lot simpler without all the C# boilerplat

[python-win32] Event log exception reporting with services

2007-04-04 Thread Chris Mellon
The servicemanager implementation writes an entry into the windows error log when an exception causes a service to drop out of DoRun. This works great with Python2.4, but with Python 2.5 I don't get the error messages. I'm using the prebuilt installers from the SF site, version 210 for both. This a

Re: [python-win32] adodbapi update - where to post?

2007-04-04 Thread David Fraser
Vernon Cole wrote: > Henrik seems to have disappeared from the Internet and no maintenance > of the adodbapi site on soureceforge has happened in several years. > Question for this group: > Should I attempt to take over the project on sourceforge, or should > adodbapi be added to python-win

Re: [python-win32] C# Vs Python

2007-04-04 Thread Michael Foord
Trent Nelson wrote: >> Where CPython beats IronPython is cross-platform capabilities. >> > > IronPython can use standard CPython modules though, right? I've dropped > my ipy.exe in C:\Python25 and it doesn't seem to have a problem with > things like os.path, which isn't available in IP (unles

Re: [python-win32] C# Vs Python

2007-04-04 Thread Kevin Horn
Michael Foord gave an excellent talk at PyCon about developing using IronPython and Windows Forms, which might be of interest. The presentation is here: http://www.voidspace.org.uk/ironpython/presentation.html Kevin Horn On 4/4/07, Trent Nelson <[EMAIL PROTECTED]> wrote: > Where CPython beats

Re: [python-win32] C# Vs Python

2007-04-04 Thread Trent Nelson
> Where CPython beats IronPython is cross-platform capabilities. IronPython can use standard CPython modules though, right? I've dropped my ipy.exe in C:\Python25 and it doesn't seem to have a problem with things like os.path, which isn't available in IP (unless I'm doing something brain dead).