M Marco Sep 11, 2008 #1 Hi. Does anyone knows how to close outlook from a access VBA command line? Thanks, Marco
M MikeB Sep 11, 2008 #3 Marco said: Hi. Does anyone knows how to close outlook from a access VBA command line? Click to expand... 'Outlook has to be running first Private Sub CloseOutlook() Dim objOLook As Object Set objOLook = GetObject(, "Outlook.Application") objOLook.Application.Quit End Sub
Marco said: Hi. Does anyone knows how to close outlook from a access VBA command line? Click to expand... 'Outlook has to be running first Private Sub CloseOutlook() Dim objOLook As Object Set objOLook = GetObject(, "Outlook.Application") objOLook.Application.Quit End Sub