New Post: Outlook 2007 does not terminate after the MapiLogonEx
Thank you for your quick response. I will try the same and update you.
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
Hi, I have written a multithreaded console application, which fetches all contacts. Sometimes(on some machines) when this MAPI application is running, and I open the outlook, I get the following...
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
Unless you're calling into Simple MAPI, MapiLogOff isn't a MAPI function, so I assume it's something you wrote. Further, I assume in there you're calling IMAPISession::Logoff...
View ArticleNew Post: Error : Cannot open your default e-mail folders. the file...
I am calling IMAPISession::Logoff(). I did following minor code change which seemed to have solved this issue. Earlier I used to release the m_lpMsgStore just before the application termination,...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
When in MFCMAPI I set SESSION -> OPEN SESSION It will display the Profile window. But if I try to create a new profile, it does always open my own personal mailbox and does not let me to change the...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
What steps are you following to create a new profile?
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
Open MFCMAPI tool, From main view select SESSION From upper menu, LOG ON. It will prompt the Outlook profile window, you will set a display name. After OK it should come a new window where you can...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
When the profile dialog comes up, are you hitting the "New" button? It sounds like you're just picking an existing profile.
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
Open MFCMAPI tool -> Select SESSION from menu -> select LOGON -> From Choose profile select NEW PROFILE button write new displayname and press ok.After the final step should come a window...
View ArticleNew Post: Problems with opening new sessions in MCFMAPI Feb 2014 release
I have never seen the profile picker function as you describe. What version of Outlook are you running? Perhaps some screenshots would help illustrate what you're seeing?
View ArticleSource code checked in, #108041
Problem: Add feature to add attachments to a message Fix: Done
View ArticleNew Post: How to get the EMail Address from a contact
Hi, I have written a Mapi application which would read couple of properties from a give contact. Most of the properties like PR_HOME_TELEPHONE_NUMBER , PR_HOME2_TELEPHONE_NUMBER ,...
View ArticleNew Post: How to get the EMail Address from a contact
You're looking at the property tag of a named property, which you can identify because the tag is > 0x8000. You need to be looking at the named property name. In MFCMAPI, that's a different column.
View ArticleNew Post: How to get the EMail Address from a contact
Thanks Griffin, I shall check this, and let you know Regards, Rohan
View ArticleNew Post: How to get the EMail Address from a contact
Hi Griffin, I am using following code //#define PR_EMAIL1_ORIGINAL_DISPLAY_NAME 0x8084001E void CMapiSession::GetContacts(LPMAPIFOLDER lpFolder) {HRESULT hr = S_OK; LPMAPITABLE lpContentsTable = NULL;...
View ArticleNew Post: How to get the EMail Address from a contact
You're trying to get a named property. You need to use GetIDsFromNames to map the name of the property to the property tag you can use to retrieve the property. I would study this before...
View ArticleNew Post: How to get the EMail Address from a contact
Thanks Griffin. I do appreciate your help.
View ArticleNew Post: Command Line EML import
Hello, Is there a way to run a command line to have . EML messages in an OS folder imported into a PST folder? While MFCMAPI can do it, you have establish the session, open the root folder, open the...
View ArticleNew Post: Command Line EML import
All of MrMAPI's functions revolve around exporting data. Importing data is something I'm not sure I want to be automatable using my code.
View Article