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?
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?