M
Mike Lowery
I've got some code that creates a MAPI.Session object and then logs on to the Exchange mail server:
Dim oSession As MAPI.Session
Set oSession = New MAPI.Session
oSession.Logon ProfileName:="MS Exchange Settings", NewSession:=False
This is being done within Outlook using VBA. It works, but the problem is that the .Logon method takes about a half minute to
execute. Since I'm already logged in to Outlook using this profile, is there any way to attach the session to the existing session
instead of creating a new one? The NewSession:=False sounds like it does this, but the 30 second delay tells me otherwise (I
think?)
Anyone know how to get rid of this delay?
Dim oSession As MAPI.Session
Set oSession = New MAPI.Session
oSession.Logon ProfileName:="MS Exchange Settings", NewSession:=False
This is being done within Outlook using VBA. It works, but the problem is that the .Logon method takes about a half minute to
execute. Since I'm already logged in to Outlook using this profile, is there any way to attach the session to the existing session
instead of creating a new one? The NewSession:=False sounds like it does this, but the 30 second delay tells me otherwise (I
think?)
Anyone know how to get rid of this delay?