Ralph Gielkens
Posts: 6
Joined: 2011-06-01
|
Hello,
I've found the problem. I created the Outlook object. And after i created the object i must connect it to the 'AddInExpress.OutlookSecurityManager'
try
OutlookObject:= GetActiveOleObject('Outlook.Application');
except
OutlookObject:= CreateOleObject('Outlook.Application');
end;
if VarIsClear(SecurityManager) then
begin
DebugMsg('Trying to create object OutlookSecurityManager');
try
SecurityManager := CreateOLEObject('AddInExpress.OutlookSecurityManager');
if not VarIsClear(SecurityManager) then
begin
if not VarIsClear(OutlookObject) then
//Here was the problem [B]'.Application'[/B]
SecurityManager.ConnectTo(OutlookObject[B].Application[/B])
end;
except
on e : exception do
begin
DebugMsg('Could not create OutlookSecurityManager ErrorMSG: ' + e.Message);
Exit;
end;
end;
end;
After i added ".Application" the check result = osmOK.
Ralph |
|
Renat Tlebaldziyeu
Guest
|
Hello Ralph,
I've reproduced the issue that you described. It's filed under #2349 in your bug-tracking system and will be fixed in the next public build of the ActiveX edition of Outlook Security Manager. Thank you for pointing this out for me.
I've sent you the new versions of osmax.ocx and osmax64.ocx. Please try to test them on your PC and let me know about the results. |
|