i'v created an outlook object (oApp = New Outlook.Application() that will create a new email: oMsg = oApp.CreateItem(Outlook.OlItemType.olMailItem)

after the message dialog is started the user has to press send to send the message and close oMsg.. but what happens to oApp? That one is still open right? How can i close this after the user have press send message on the oMsg Dialog? or is oApp closed then oMsg is closed?