Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Excel process still running after program completion.

Reply
Thread Tools

Excel process still running after program completion.

 
 
Chris
Guest
Posts: n/a
 
      09-11-2007
I have a python script that is driving Excel and using the win32com
module. However, upon program completion there's still an Excel.exe
process running in the background that I must terminate through Task
Manager. Reading up on other threads indicate that maybe I still have
some Excel objects referenced within my code. Is this why the process
doesn't terminate?

The related (I hope) parts of my code is here.

x1App = Dispatch("Excel.Application")
Book1 = x1App.Workbooks.Open(ExcelLogPath+"\\outputLog-template.xls")
x1App.Visible = 1
for sheets in Book1.Worksheets:
if sheets.Name == file_name:
sheetExists = True
if sheetExists != True:
activeSheet =
Book1.Worksheets.Add(After=Book1.Worksheets(1))
activeSheet.Name = file_name
testNum[file_name] = 0
Book1.Worksheets(file_name).Select()
Book1.ActiveSheet.Cells(1+(testNum[file_name]*20),1).Value = "Original
File Name"
Book1.ActiveSheet.Cells(2+(testNum[file_name]*20),1).Value =
file_name
Book1.ActiveSheet.Pictures().Insert(output).Select ()
Book1.SaveAs(Filename=path)
x1App.ActiveWorkbook.Close(SaveChanges=0)
x1App.Quit()
del x1App
del Book1
del activeSheet

What am I missing?

 
Reply With Quote
 
 
 
 
Chris
Guest
Posts: n/a
 
      09-11-2007
On Sep 11, 12:59 pm, "Hamilton, William " <wham...@entergy.com> wrote:
> > From: Chris

>
> > I have a python script that is driving Excel and using the win32com
> > module. However, upon program completion there's still an Excel.exe
> > process running in the background that I must terminate through Task
> > Manager. Reading up on other threads indicate that maybe I still have
> > some Excel objects referenced within my code. Is this why the process
> > doesn't terminate?

>
> > The related (I hope) parts of my code is here.

>
> > x1App = Dispatch("Excel.Application")
> > Book1 = x1App.Workbooks.Open(ExcelLogPath+"\\outputLog-template.xls")
> > x1App.Visible = 1
> > for sheets in Book1.Worksheets:
> > if sheets.Name == file_name:
> > sheetExists = True
> > if sheetExists != True:
> > activeSheet =
> > Book1.Worksheets.Add(After=Book1.Worksheets(1))
> > activeSheet.Name = file_name
> > testNum[file_name] = 0
> > Book1.Worksheets(file_name).Select()
> > Book1.ActiveSheet.Cells(1+(testNum[file_name]*20),1).Value = "Original
> > File Name"
> > Book1.ActiveSheet.Cells(2+(testNum[file_name]*20),1).Value =
> > file_name
> > Book1.ActiveSheet.Pictures().Insert(output).Select ()
> > Book1.SaveAs(Filename=path)
> > x1App.ActiveWorkbook.Close(SaveChanges=0)
> > x1App.Quit()
> > del x1App
> > del Book1
> > del activeSheet

>
> > What am I missing?

>
> In my Excel projects, I terminate it with:
>
> xlBook.Close()
> xlApp.Quit()
>
> I haven't had a problem with Excel staying open after the program ends.
>
> (On a tangent, I want to find the person who thought it was a good idea
> to use the same symbol in a font for 1, l, and I and do some unpleasant
> things.)
>
> --
> -Bill Hamilton


That doesn't really fix the problem as I'm pretty sure its identical
code for
x1App.ActiveWorkbook.Close(SaveChanges=0)

I think where my problem lies is within my for each loop where I
search to see if the worksheet with the name already exists
for sheets in Book1.Worksheets:
if sheets.Name == file_name:
sheetExists = True


Since I'm assuming that it creates objects for each of the sheets and
I don't delete them...

 
Reply With Quote
 
 
 
 
Chris
Guest
Posts: n/a
 
      09-11-2007
On Sep 11, 1:26 pm, Chris <chris.ole...@gmail.com> wrote:
> On Sep 11, 12:59 pm, "Hamilton, William " <wham...@entergy.com> wrote:
>
>
>
> > > From: Chris

>
> > > I have a python script that is driving Excel and using the win32com
> > > module. However, upon program completion there's still an Excel.exe
> > > process running in the background that I must terminate through Task
> > > Manager. Reading up on other threads indicate that maybe I still have
> > > some Excel objects referenced within my code. Is this why the process
> > > doesn't terminate?

>
> > > The related (I hope) parts of my code is here.

>
> > > x1App = Dispatch("Excel.Application")
> > > Book1 = x1App.Workbooks.Open(ExcelLogPath+"\\outputLog-template.xls")
> > > x1App.Visible = 1
> > > for sheets in Book1.Worksheets:
> > > if sheets.Name == file_name:
> > > sheetExists = True
> > > if sheetExists != True:
> > > activeSheet =
> > > Book1.Worksheets.Add(After=Book1.Worksheets(1))
> > > activeSheet.Name = file_name
> > > testNum[file_name] = 0
> > > Book1.Worksheets(file_name).Select()
> > > Book1.ActiveSheet.Cells(1+(testNum[file_name]*20),1).Value = "Original
> > > File Name"
> > > Book1.ActiveSheet.Cells(2+(testNum[file_name]*20),1).Value =
> > > file_name
> > > Book1.ActiveSheet.Pictures().Insert(output).Select ()
> > > Book1.SaveAs(Filename=path)
> > > x1App.ActiveWorkbook.Close(SaveChanges=0)
> > > x1App.Quit()
> > > del x1App
> > > del Book1
> > > del activeSheet

>
> > > What am I missing?

>
> > In my Excel projects, I terminate it with:

>
> > xlBook.Close()
> > xlApp.Quit()

>
> > I haven't had a problem with Excel staying open after the program ends.

>
> > (On a tangent, I want to find the person who thought it was a good idea
> > to use the same symbol in a font for 1, l, and I and do some unpleasant
> > things.)

>
> > --
> > -Bill Hamilton

>
> That doesn't really fix the problem as I'm pretty sure its identical
> code for
> x1App.ActiveWorkbook.Close(SaveChanges=0)
>
> I think where my problem lies is within my for each loop where I
> search to see if the worksheet with the name already exists
> for sheets in Book1.Worksheets:
> if sheets.Name == file_name:
> sheetExists = True
>
> Since I'm assuming that it creates objects for each of the sheets and
> I don't delete them...


Which I'm right... I added this code and now there's no EXCEL.EXE
process after my script completes

for sheets in Book1.Worksheets:
if sheets.Name == file_name:
sheetExists = True
sheets = None
del sheets

 
Reply With Quote
 
Tal Einat
Guest
Posts: n/a
 
      09-12-2007
On Sep 11, 8:29 pm, Chris <chris.ole...@gmail.com> wrote:
> On Sep 11, 1:26 pm, Chris <chris.ole...@gmail.com> wrote:
>
>
>
> > On Sep 11, 12:59 pm, "Hamilton, William " <wham...@entergy.com> wrote:

>
> > > > From: Chris

>
> > > > I have a python script that is driving Excel and using the win32com
> > > > module. However, upon program completion there's still an Excel.exe
> > > > process running in the background that I must terminate through Task
> > > > Manager. Reading up on other threads indicate that maybe I still have
> > > > some Excel objects referenced within my code. Is this why the process
> > > > doesn't terminate?

>
> > > > The related (I hope) parts of my code is here.

>
> > > > x1App = Dispatch("Excel.Application")
> > > > Book1 = x1App.Workbooks.Open(ExcelLogPath+"\\outputLog-template.xls")
> > > > x1App.Visible = 1
> > > > for sheets in Book1.Worksheets:
> > > > if sheets.Name == file_name:
> > > > sheetExists = True
> > > > if sheetExists != True:
> > > > activeSheet =
> > > > Book1.Worksheets.Add(After=Book1.Worksheets(1))
> > > > activeSheet.Name = file_name
> > > > testNum[file_name] = 0
> > > > Book1.Worksheets(file_name).Select()
> > > > Book1.ActiveSheet.Cells(1+(testNum[file_name]*20),1).Value = "Original
> > > > File Name"
> > > > Book1.ActiveSheet.Cells(2+(testNum[file_name]*20),1).Value =
> > > > file_name
> > > > Book1.ActiveSheet.Pictures().Insert(output).Select ()
> > > > Book1.SaveAs(Filename=path)
> > > > x1App.ActiveWorkbook.Close(SaveChanges=0)
> > > > x1App.Quit()
> > > > del x1App
> > > > del Book1
> > > > del activeSheet

>
> > > > What am I missing?

>
> > > In my Excel projects, I terminate it with:

>
> > > xlBook.Close()
> > > xlApp.Quit()

>
> > > I haven't had a problem with Excel staying open after the program ends.

>
> > > (On a tangent, I want to find the person who thought it was a good idea
> > > to use the same symbol in a font for 1, l, and I and do some unpleasant
> > > things.)

>
> > > --
> > > -Bill Hamilton

>
> > That doesn't really fix the problem as I'm pretty sure its identical
> > code for
> > x1App.ActiveWorkbook.Close(SaveChanges=0)

>
> > I think where my problem lies is within my for each loop where I
> > search to see if the worksheet with the name already exists
> > for sheets in Book1.Worksheets:
> > if sheets.Name == file_name:
> > sheetExists = True

>
> > Since I'm assuming that it creates objects for each of the sheets and
> > I don't delete them...

>
> Which I'm right... I added this code and now there's no EXCEL.EXE
> process after my script completes
>
> for sheets in Book1.Worksheets:
> if sheets.Name == file_name:
> sheetExists = True
> sheets = None
> del sheets


You just need to 'del sheets' once after the loop, no need to do it in
every iteration. After your original loop the 'sheets' variable still
pointed to the last sheet object, probably causing it not to be
properly cleaned up. This is the only thing that your change fixes,
but it is simpler (and more readable) to just do it once after the
loop.

(Please add SOLVED or FIXED to the subject when your issue has been
resolved, so that people like me don't read the whole thread only to
find that their help is no longer needed.)

- Tal

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Spawn a process, then exit, whilst leaving process running? Victor Hooi Python 1 02-10-2013 03:50 AM
Problem with Excel reports ::::Excel 2003 Migration To Excel 2007 =?Utf-8?B?c2hhc2hhbmsga3Vsa2Fybmk=?= ASP .Net 15 10-24-2007 01:34 PM
Firefox still keeps running after closing TheCroW Firefox 9 04-12-2006 08:44 PM
Process.destroy() -- process carries on running? John English Java 0 11-07-2005 05:38 PM
Show up process indicator while process is running then do page redirection Jona ASP .Net 2 09-01-2005 04:03 AM



Advertisments