views:

606

answers:

1

I want to get the title of email in PocketOutlook in Windows Mobile.

I make a search in MSDN and find I may use Microsoft.WindowsMobile.PocketOutlook Namespace--EmailMessage Class--Subject Property should help me to get the email title.

But when I write


using Microsoft.WindowsMobile.PocketPC;

an error says that The type or namespace name 'WindowsMobile' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

What might be the problem? And is it possible to get the title of email by this way?

+1  A: 

You must add a reference to the Microsoft.WindowsMobile.PocketOutlook assembly.

leppie