Hi All,

I am doing VBA Programming in excel using office 97.I have created excel object as follows

Dim objexcel As Excel.Application
Dim objwb As Excel.Workbook
Dim objsh As Excel.Worksheet
Dim objshMI As Excel.Worksheet


Inspite of closing the workbook and setting all the object to nothing when I press ctrl+Alt+del it always shows one excel object in the memory.
I am closing the wb and setting the object to nothing in following order

objwb.Close savechanges:=False
objexcel.Application.Quit
Set objexcel = Nothing
Set objwb = Nothing
Set objshMI = Nothing
Set objsh = Nothing


Thanks & Regards,

Jignesh