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
>
-- 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
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
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
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
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
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
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