Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Udo Weik
Hello again Mark, thanks for your answer. Debugging should work out of the box - what problems are you seeing? I'm using a Delphi-component. That component checks whether the ActiveX debug interface is available (Windows Scripting Host, WSH). When I start my app, I get the following error

Re: [python-win32] Python sound playback threading control?

2013-02-14 Thread Tim Roberts
Jacob Kruger wrote: Well, it's currently making use of the sound_lib module - not sure which API it's using as such - It's a wrapper around the BASS library, which is itself a wrapper around the lower-level APIs. The BASS library itself is an abstraction -- it lets you think in terms of whole

Re: [python-win32] Failing to email large attachment with Python on Windows XP

2013-02-14 Thread Tim Roberts
newtechnologybooks wrote: /I was able to deliver 20mb files with this script, but failed when //trying 100mb files. / That's further evidence that you have hit a server limit. If you want to send 100MB files, you store them on an FTP server or a web server and send a link. Companies do not

Re: [python-win32] Failing to email large attachment with Python on Windows XP

2013-02-14 Thread Preston Landers
On Thu, Feb 14, 2013 at 12:06 PM, Tim Roberts t...@probo.com wrote: newtechnologybooks wrote: /I was able to deliver 20mb files with this script, but failed when //trying 100mb files. / That's further evidence that you have hit a server limit. If you want to send 100MB files, you store them

Re: [python-win32] Python sound playback threading control?

2013-02-14 Thread Jacob Kruger
Ok, makes some sense, and now just experimented with the restart argument of the play_blocking() method, running it inside a loop for ten times, and, it then renders like 10 repeat playbacks one after the other quite quickly, whereas, yes, if just use play(), and then use stop() inbetween, you

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Mark Hammond
Can you try: import win32com.axscript.axscript import win32com.axdebug.axdebug And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and determine why it can't find that

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Udo Weik
Hello Mark, import win32com.axscript.axscript import win32com.axdebug. And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and determine why it can't find that

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Mark Hammond
On 15/02/2013 10:32 AM, Udo Weik wrote: Hello Mark, import win32com.axscript.axscript import win32com.axdebug. And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and