Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Process

Status
Not open for further replies.

louisa888

MIS
Joined
Jan 23, 2002
Messages
4
Location
CA
hi,
I have a problem with the excel process. I have started the excel application like this

Dim oExcel As Application
Dim oSheet As Worksheet
Set oExcel = Excel.Application
Set oBook = oExcel.Workbooks.Open(FileName)
Set oSheet = oBook.ActiveSheet
.... after doing some functions...
oBook.close
oExcel.Quit
Set oSheet = nothing
Set oBook = nothing
Set oExcel = nothing

however, when i check the process, it is still running. How can I solve this problem?
 
Hi,
What's happnin' in your functions?

While things seem to be waiting, try hitting the Esc Button and see where your procedure is processing. :-) Skip,
metzgsk@voughtaircraft.com
 
hi,

I use

Application.Quit

to completely shutdown excel.

Hope it helps :).

dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top