Re: [python-win32] Excel and Graphin - Solved

2005-05-05 Thread eric . powell
Greg and Bob- That fixed it. Thanks! Everyone else: The problem was missing parentheses (sp?) Line: se = chart.SeriesCollection.NewSeries Should be: se = chart.SeriesCollection().NewSeries() Thanks for the help! Eric Eric B. Powell E&GIS BSRI (803)952-7783 When a true genius appears in

Re: [python-win32] Excel and Graphing

2005-05-05 Thread Bob Gailer
At 06:08 AM 5/5/2005, [EMAIL PROTECTED] wrote: I am close to finishing a project using Excel objects in python to generate a series of graphs. However I can't get the series to add to the chart properly. I have an Excel chart with no series on it, so I am trying to add new series using the

Re: [python-win32] [Newbie] KeyError: '__str__'

2005-05-05 Thread Matteo Villari
Simon Brunning ha scritto: >On 5/5/05, Matteo Villari <[EMAIL PROTECTED]> wrote: > > >>Hi. >>I'm not intended to learn Python actually but i have a little problem. I >>have to run a Python script under my Apache/win32 server. After solved >>some problems now the script runs but doesn't work >>pr

Re: [python-win32] Excel and Graphing

2005-05-05 Thread Greg Landrum
On 5/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I am close to finishing a project using Excel objects in python to generate > a series of graphs. > However > > I can't get the series to add to the chart properly. > > I have an Excel chart with no series on it, so I am tryin

Re: [python-win32] [Newbie] KeyError: '__str__'

2005-05-05 Thread Simon Brunning
On 5/5/05, Matteo Villari <[EMAIL PROTECTED]> wrote: > Hi. > I'm not intended to learn Python actually but i have a little problem. I > have to run a Python script under my Apache/win32 server. After solved > some problems now the script runs but doesn't work > properly. (snip) > The script is th

[python-win32] [Newbie] KeyError: '__str__'

2005-05-05 Thread Matteo Villari
Hi. I'm not intended to learn Python actually but i have a little problem. I have to run a Python script under my Apache/win32 server. After solved some problems now the script runs but doesn't work properly. That's the output error Traceback (most recent call last): File "C:/Programmi/Apache

[python-win32] Excel and Graphing

2005-05-05 Thread eric . powell
I am close to finishing a project using Excel objects in python to generate a series of graphs. However I can't get the series to add to the chart properly. I have an Excel chart with no series on it, so I am trying to add new series using the Chart.SeriesCollection.NewSeries call, but get t