OLE: Excel.Application

  • Thread starter Thread starter myname
  • Start date Start date
M

myname

Hello,

in VB.Net, I use Excel to display results :

dim xl as new Excel.Application // creates an Excel process
// snip (putting values into cells)
xl.Visible = true

If the user closes the Excel file and then my program,
the Excel process is killed in memory, which is good.

If the user closes my program first and then the Excel file,
the Excel process remains in memory !

How can I make sure the process will be killed ?

Thanks !
 
Hi

You need to set
xl.quit
(and before that ensure that excel doesn't halt and ask things like "save
changes?" on quitting) somewhere in your program, in the unload event of
your main form or something.

HTH. best wishes Harald
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top