Help to remove Excel stak from Task Manager

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
I am using Excel Application in my Asp.Net page. for this i used Excell Application, workbook, workshee class. I am using vb as script for coding. Simple of my code i
Dim xlApp as Excel.Applicatio
Dim xlwBook as Excel.Workbook
Dim xlwSheet as Excel.Workshe
xlApp=new Excel.Applicatio
xlwBook=xlApp.Workbooks.open("filename.xls"
xlwSheet=xlwBook.Sheets(1
' some operation on Excel Shee
'xlsheet.cell(2.5).value="add in Cell

xlwBook.save(
xlwBook.Close(
xlApp.Qui

This is the style i am using for intraction with an Excel Sheet, i am closing workbook and Quiting Application, But it is not removing from Task Manager and not woriking if i like to use the same Workbook again
So, Pls help me to solve the problem, I am using VB as Scrip
Waiting for your Suggessio

Mail us: (e-mail address removed)
 
This Excel article may provide you with the answers you seek:
http://www.aspnetpro.com/NewsletterArticle/2003/09/asp200309so_l/asp200309so_l.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net


Aun Ali said:
Hello,
I am using Excel Application in my Asp.Net page. for this i used Excell
Application, workbook, workshee class. I am using vb as script for coding.
Simple of my code is
Dim xlApp as Excel.Application
Dim xlwBook as Excel.Workbooks
Dim xlwSheet as Excel.Workshee
xlApp=new Excel.Application
xlwBook=xlApp.Workbooks.open("filename.xls")
xlwSheet=xlwBook.Sheets(1)
' some operation on Excel Sheet
'xlsheet.cell(2.5).value="add in Cell"
'
xlwBook.save()
xlwBook.Close()
xlApp.Quit

This is the style i am using for intraction with an Excel Sheet, i am
closing workbook and Quiting Application, But it is not removing from Task
Manager and not woriking if i like to use the same Workbook again.
 
Back
Top