Re: [python-win32] Fwd: URGENT! Changing IE PAC Settings with Python

2009-05-20 Thread Tim Roberts
James Matthews wrote: > > -- Forwarded message -- > From: *K-Dawg* mailto:kdaw...@gmail.com>> > Date: Wed, May 20, 2009 at 7:06 PM > > Thanks for any response. I am in a crisis where one of our networking > guys moved where our PAC file is housed. There was a group policy set >

[python-win32] Fwd: URGENT! Changing IE PAC Settings with Python

2009-05-20 Thread James Matthews
-- Forwarded message -- From: K-Dawg Date: Wed, May 20, 2009 at 7:06 PM Subject: URGENT! Changing IE PAC Settings with Python To: python-l...@python.org Hello, Thanks for any response. I am in a crisis where one of our networking guys moved where our PAC file is housed. There

Re: [python-win32] (no subject)

2009-05-20 Thread Tim Roberts
Patrick Asselman wrote: > How would i translate a bit of visual basic code like below to Python? > > Range("F7").Select > Selection.Copy > Range("CO7").Select > Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _ > SkipBlanks:=False, Transpose:=False > > I'm t

[python-win32] (no subject)

2009-05-20 Thread Patrick Asselman
How would i translate a bit of visual basic code like below to Python? Range("F7").Select Selection.Copy Range("CO7").Select Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False I'm trying to copy the formatting of one cel

Re: [python-win32] Passing arrays by reference

2009-05-20 Thread Tim Roberts
Benoît Prigent wrote: > Hi all, > > I found a thread that it similar to what I'm looking for: > http://mail.python.org/pipermail/python-win32/2002-November/000562.html > but I couldn't come up with a solution... > > I have a C++ server with a COM interface, which I can access via JScript > without

[python-win32] adodbapi and stored procedure output parameters on MSSQL

2009-05-20 Thread Randy Syring
I found this post: http://bytes.com/groups/python/38259-sql-server-stored-prcedures-output-parameters which was helpful in getting me started. However, that method does not yield the output parameters if a recordset is output in the SP. So, if my SP is: CREATE PROCEDURE sp_test_only_out

Re: [python-win32] Re ading date from PYTime

2009-05-20 Thread SantoshMohan
Found another way : >>> print emptylist [((u'Name', u'DOB'),), ((u'C R RAMESH', ),), ((u'G SIVA RAMA KRISHNAIAH', ),)] >>> v=emptylist[1][0] >>> v (u'C R RAMESH', ) >>> v_date=v[1].Format().split()[0] >>> print v_date 07/13/61 Tim Golden-4 wrote: > > SantoshMohan wrote: >> Hi, >> >> I am writi

[python-win32] Passing arrays by reference

2009-05-20 Thread Benoît Prigent
Hi all, I found a thread that it similar to what I'm looking for: http://mail.python.org/pipermail/python-win32/2002-November/000562.html but I couldn't come up with a solution... I have a C++ server with a COM interface, which I can access via JScript without any problem, but when it comes to P