A
AMcMillan
On some systems (not all, and I am not sure yet what makes them different)
every time I add a column to the columns collection, it triggers the Outlook
Security Prompt.
Here is the code I am using...nothing fancy:
----------------------------------------------
pColumns = pTable->GetColumns();
pColumns->RemoveAll();
pColumns->Add(L"EntryID");
pColumns->Add(L"http://schemas.microsoft.com/mapi/proptag/0x66700102"); //
PR_LONGTERM_ENTRYID_FROM_TABLE (0x66700102)
pColumns->Add(L"Subject");
pColumns->Add(L"LastModificationTime");
pColumns->Add(L"MessageClass");
pTable->MoveToStart();
----------------------------------------------
Any idea why this is happening only on some systems, and is there any way
for me to make it stop prompting them?
Thanks,
Andrew
every time I add a column to the columns collection, it triggers the Outlook
Security Prompt.
Here is the code I am using...nothing fancy:
----------------------------------------------
pColumns = pTable->GetColumns();
pColumns->RemoveAll();
pColumns->Add(L"EntryID");
pColumns->Add(L"http://schemas.microsoft.com/mapi/proptag/0x66700102"); //
PR_LONGTERM_ENTRYID_FROM_TABLE (0x66700102)
pColumns->Add(L"Subject");
pColumns->Add(L"LastModificationTime");
pColumns->Add(L"MessageClass");
pTable->MoveToStart();
----------------------------------------------
Any idea why this is happening only on some systems, and is there any way
for me to make it stop prompting them?
Thanks,
Andrew