Re: py2exe (or other exe builder) on Vista system for Vista/XP install targets.

2007-10-31 Thread GaryLee
On 10 31 , 8 08 , Michael <[EMAIL PROTECTED]> wrote: > I'm trying to build a exe on a vista system using py2exe. It will > deploy to vista and XP systems. If it matters, the application uses > pyserial, as well. I have VS Studio 2005 installed on this laptop as > well. I've found this so far that

Re: Adding extra modules to a Pyinstaller build

2007-10-08 Thread GaryLee
> I need to add several Python standard modules to a Pyinstaller > project. The modules are not (and cannot be) explicitly imported in my > project script, so is there a way to add them to my .spec file in > order to allow Pyinstaller to search for them in PYTHONPATH and add > them to the project?

Re: Can't see the arguements when use Python in WSH.

2007-09-16 Thread GaryLee
On 9 16 , 9 09 , Duncan Booth <[EMAIL PROTECTED]> wrote: > GaryLee <[EMAIL PROTECTED]> wrote: > > Does anyone have the same situation? Is it my pywin32 package > > corrupted? I've downloaded the last pywin32 package and executed the > > site-packages\win3

Can't see the arguements when use Python in WSH.

2007-09-16 Thread GaryLee
Hi, Folks: I am using Python in WSH. However, I got a strange problem on my computer. Here is a small program to show the problem. # xxx.pys objArgs = WScript.Arguments for i in xrange(objArgs.Count()): WScript.Echo(objArgs(i)) WScript.Echo('Total %d arguments.' % objArgs.Count()) If I execu