Application not quitting after calling quit
Just Calling .Quit() will not remove the Application from memory. It is very important to close the objects after you are done with your coding. This ensures that all objects are released properly and nothing remains in the memory. See this example Imports Excel = Microsoft.Office.Interop.Excel Public Class Form1 ‘~~> Define your Excel Objects Dim … Read more