From: mjhiggy on
We have installed the outlook synch. objects, update and client, when
setting up the outlook synch. entities, Outlook Item field, the above
error appears

When setting up the Entity and drilling down on the Outlook item, the
error message "Thh outlook synch. Lookup Name table is empty" this
table is populated using the code below.

Has anyone else had this issue with outlook 2003?

This comes from the CU5300 function code below.


CLEAR(OObjLibrary);
CREATE(OObjLibrary);

FOR Counter := 1 TO OObjLibrary.ItemsCount DO BEGIN
TempOSynchLookupName.INIT;
TempOSynchLookupName.Name := OObjLibrary.GetItemName(Counter);
TempOSynchLookupName."Entry No." := Counter;
TempOSynchLookupName.INSERT;
END;

ItemName := ShowLookupNames(TempOSynchLookupName);


it obviously cannot find anything using the automation object, anyone
have any ideas?

thanks!