Hello!
I'd like to save a reference to a task item in pocket outlook (WinCE 5) and
then later open the item. In Win CE 3, i used OId identifier and then opened
it by
Task1=App1.GetItemFromOid(OId)
Task1.Display
I just guess Oid now is ItemId; and Display now is ShowDialogue. But I
cannot find anything like GetItemFromOid which would allow me to find the
right Task item. Does anyone know?
Thank you, best regards
Michael
Peter Foot - 28 Sep 2009 22:33 GMT
The Task constructor accepts an ItemId so you can use the following:-
Task task1 = new Task(new ItemId(oid));
task1.ShowDialog();
Regards,
Peter

Signature
Peter Foot
Microsoft Device Application Development MVP
peterfoot.net | appamundi.com | inthehand.com
APPA Mundi Ltd - software solutions for a mobile world
In The Hand Ltd - .NET Components for Mobility
> Hello!
>
[quoted text clipped - 10 lines]
> Thank you, best regards
> Michael