Re: [python-win32] Unable to set an Excel chart's titl ethrough win32com : can you reproduce this problem ?

2005-06-29 Thread Fabrice Capiez
Thank you Gabriel and Tim Indeed the Chart.Location was causing a problem, and I had not suspected it was since I do not use this method in my main program (It was just something I had written as an example). Actually, it seems that the Copy method of either a chart or a sheet is also corruptin

Re: [python-win32] filling Windows properties "Summary" tab?

2005-06-29 Thread RayS
Hi Roger, At 11:23 AM 6/28/2005, Roger Upole wrote: >On NTFS 5 (Win2k or later), you can add Summary info to any file, >and it's stored in alternate data streams. However, if you copy the >file to a filesystem that doesn't support alternate data streams, the >properties are lost. I had also fo

[python-win32] PythonWin Script Editor Display Line Numbers?

2005-06-29 Thread Jeff Grice
Hello all,   I have an easy question that I’m sure someone on the list can help with.  Is there a way to display line numbers in the Python Script editor in PythonWin?   I am using Python 2.4 pywin32 build 204 on WindowsXP.   Any help would be much appreciated.   Jeff

[python-win32] system() fails, win32process succeeds

2005-06-29 Thread RayS
Someone might be interested: I ran across an unexpected process issue this week. We have a converter app that is part of a suite, when it runs it needs to call an external DOS exe briefly (the exe does bit-shifting in a file etc.) I originally used system(), but found that _if_ one other part

Re: [python-win32] PythonWin Script Editor Display Line Numbers?

2005-06-29 Thread Jürgen Kareta
Hello Jeff, > I have an easy question that I’m sure someone on the list can help > with. Is there a way to display line numbers in the Python Script > editor in PythonWin? > select view/options in the main menu; select tab editor set Line Numbers in the Margins Widths Frame to something more tha

[python-win32] Re: filling Windows properties "Summary" tab?

2005-06-29 Thread Roger Upole
"RayS" wrote: > Hi Roger, > > At 11:23 AM 6/28/2005, Roger Upole wrote: >>On NTFS 5 (Win2k or later), you can add Summary info to any file, >>and it's stored in alternate data streams. However, if you copy the >>file to a filesystem that doesn't support alternate data streams, the >>properties a

[python-win32] ADSI and LDAP Searches

2005-06-29 Thread Gooch, John
Hey, I am converting a Perl script into a Python script, and the part where the Perl script is searching Active Directory using the LDAP interface is throwing me a curve ball. Here is a search for a Windows Group in Perl: my $hdb = Win32::OLE->new("ADODB.Connection"); $hdb->{Provider} = "ADsDSOObj

[python-win32] Re: system() fails, win32process succeeds

2005-06-29 Thread Roger Upole
"RayS" wrote: > Someone might be interested: I ran across an unexpected process issue this > week. > We have a converter app that is part of a suite, when it runs it needs to > call an external DOS exe briefly (the exe does bit-shifting in a file > etc.) I originally used system(), but found

Re: [python-win32] Unable to set an Excel chart's titl ethrough win32com : can you reproduce this problem ?

2005-06-29 Thread Bob Gailer
At 05:16 AM 6/29/2005, Fabrice Capiez wrote: Thank you Gabriel and Tim Indeed the Chart.Location was causing a problem, and I had not suspected it was since I do not use this method in my main program (It was just something  I had written as an example). Actually, it seems that the Copy method o

Re: [python-win32] system() fails, win32process succeeds

2005-06-29 Thread Ray Schumacher
Hi Roger, At 12:42 PM 6/29/2005, Roger Upole wrote: >I ran into something similar a while back that turned out to be a deficiency >in the called >program. It wasn't taking into account the fact that it might not be able >to acquire resources in a timely manner. I think that is the case, but

Re: [python-win32] Unable to set an Excel chart's titl ethrough win32com : can you reproduce this problem ?

2005-06-29 Thread Fabrice Capiez
> > According to Excel Visual Basic Help: "Characters - Returns a > Characters > object that represents a range of characters within the object text. You > can use the Characters object to format characters within a text string. > > Now look at the Text property "Returns or sets the text for

Re: [python-win32] ADSI and LDAP Searches

2005-06-29 Thread Mark Hammond
I've never used ADSI via ADODB, but have managed to use the raw ADSI interfaces directly. Check out your lib\site-packages\win32comext\adsi\demos directory. > Here is a search for a Windows Group in Perl: > my $hdb = Win32::OLE->new("ADODB.Connection"); > $hdb->{Provider} = "ADsDSOObject"; > $hdb