[python-win32] 1MB Thread Stack Size

2005-06-01 Thread Hughes, Chad O
Title: 1MB Thread Stack Size I have a program that needs to create a great deal of threads.  Unfortunately, I cannot seem to find a way to lower the 1MB default stack size per thread.  The threading module does not seem to support setting the stack size explicitly.  I have 1GB of memory on my

Re: [python-win32] 1MB Thread Stack Size

2005-06-02 Thread Hughes, Chad O
win32] 1MB Thread Stack Size On Wed, 01 Jun 2005 17:25:50 -0700, "Hughes, Chad O" <[EMAIL PROTECTED]> wrote: >I have a program that needs to create a great deal of threads. >Unfortunately, I cannot seem to find a way to lower the 1MB default >stack size per thread. Th

[python-win32] PythonWin as a MDI

2005-06-07 Thread Hughes, Chad O
Title: PythonWin as a MDI Is there a way to launch PythonWin as a Multiple Document Interface so that I can make good use of my multi-monitor system?  I would like to open a number of code pages and have them on different monitors. ___ Python-win3

Re: [python-win32] NTService detecting if the Windows System is Idle

2005-06-10 Thread Hughes, Chad O
Are you saying that you want to launch a program that waits until the CPU's idle time is at a given threshold and once the threshold is met the program does something until the threshold is no longer met after wich your app waits for the threshold again? -Original Message- From: [EMAIL P

Re: [python-win32] COM access to Mozilla Firefox

2005-06-10 Thread Hughes, Chad O
Title: Message In this example, I am using WScrip, so the available methods should be found by looking up WScript:   from win32com.client import Dispatchfrom time import sleeps=Dispatch('WScript.Shell')s.Run('Explorer http://www.msn.com')   or:   from win32com.client import Dispatchfrom tim

Re: [python-win32] NTService detecting if the Windows System is Idle

2005-06-10 Thread Hughes, Chad O
print 'Stopping thread' worker.stop() worker.join() raise Chad -Original Message- From: Animesh Bansriyar [mailto:[EMAIL PROTECTED] Sent: Friday, June 10, 2005 12:19 PM To: Hughes, Chad O Subject: RE: [python-win32] NTService detecting if the Windows System is I

Re: [python-win32] NTService detecting if the Windows System is Idle

2005-06-13 Thread Hughes, Chad O
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hughes, Chad O Sent: Monday, June 13, 2005 9:11 AM To: python-list@python.org Subject: RE: [python-win32] NTService detecting if the Windows System is Idle -Original Message- From: Hughes, Chad

[python-win32] Office constants

2005-06-20 Thread Hughes, Chad O
Title: Office constants Is there a module that contains all of the constants for office (for example: xlRight, olOpen, and wdMAPI) in the pywin32 Windows extensions?  I have created my own modules for these constants but I would rather use the pywin32 extensions if possible. Thanks, Chad