Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
A version of this page is also available for
4/8/2010
The OlItemTypeenumeration identifies the PIM item type.
Syntax
(in PimStore.h) enum OlItemType { olAppointmentItem = 1, olContactItem = 2, olTaskItem = 3, olCityItem = 102 }; |
Elements
- olAppointmentItem
-
An appointment item.
- olContactItem
-
A contact item.
- olTaskItem
-
A task item.
- olCityItem
-
A city item.
Example
Description
The following code example demonstrates how to use OlItemTypeto create a SIM Contact item.
Note: |
---|
To make the following code example easier to read, security checking and error handling are not included. This code example should not be used in a release configuration unless it has been modified to include them. |
Code
Copy Code | |
---|---|
hr = ExCreateContactByType(polApp, olSimContactItem, "John Doe", "4255551212"); HRESULT ExCreateContactByType(__in IPOutlookApp *polApp, int olItemType, __in BSTR szName, __in BSTR szHomePhone) { HRESULT hr = S_OK; IDispatch * pDispatch = NULL; IContact * pContact = NULL; hr = polApp->CreateItem(olItemType, &pDispatch); hr = pDispatch->QueryInterface(IID_IContact, (void **)&pContact); hr = pContact->put_FirstName(szName); hr = pContact->put_BusinessTelephoneNumber(szHomePhone); hr = pContact->Save(); RELEASE(pContact); RELEASE(pDispatch); return hr; } |
Requirements
Header | pimstore.h |
Library | Pimstore.lib |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Pocket PC 2000 and later, Smartphone 2002 and later |