J
Jack
Hello,
My app hooks up to Excel the following way:
Set moExcelApp = CreateObject("Excel.Application")
Set moExcelWS = moExcelApp.ActiveWorkbook.ActiveSheet
and disconnects from it this way:
Set moExcelWS = Nothing
Set moExcelApp = Nothing
When should I use:
moExcelApp.Application.Quit
?
Under what circuimstances?
Is it really necessary to use it?
Your help appreciated,
Jack
My app hooks up to Excel the following way:
Set moExcelApp = CreateObject("Excel.Application")
Set moExcelWS = moExcelApp.ActiveWorkbook.ActiveSheet
and disconnects from it this way:
Set moExcelWS = Nothing
Set moExcelApp = Nothing
When should I use:
moExcelApp.Application.Quit
?
Under what circuimstances?
Is it really necessary to use it?
Your help appreciated,
Jack