ispypie
ispypie

Reputation: 39

Integrating with Pocket Outlook

Rather than reinvent the wheel I would like to use Outlook to manage my appointments and sync to Windows Mobile. What options are there for integrating a custom app with Outlook on the mobile? Ideally Id like to just use standard Outlook to display the appointments rather than write a custom UI however can you integrate custom data in there or have some sort of link from a standard outlook appointment to custom UI elements. I'm thinking open a standard appointment and have a button/link to open additional data stored in SQLCE or something like that. Is this possible? Thanks.

Upvotes: 0

Views: 85

Answers (1)

Matt
Matt

Reputation: 3014

The PIM items in pocket outlook each have a property bag, so you can add custom properties to each pim item. (I haven't tried with appointments, but I have added custom properties to contacts, and used them in my own applications)

If you are using .netcf take a look at OutlookSession class, which is the main object for interacting with the pim items.

I'm not sure about customisation of the UI though, as all my changes were done through my own application.

Upvotes: 1

Related Questions