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\win32comext\axscript\client\pyscript.py to reg

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

2007-09-16 Thread Duncan Booth
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\win32comext\axscript\client\pyscript.py to register the > PyScript. But, the problem is still there. > I've no

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