With the InTheHand.WindowsMobile.PocketOutlook library running on WM 5 SmartPhone
app.Properties["MeetingOrganizerName"] does return "" (empty string)
Same device and same code using the Microsoft.WindowsMobile.PocketOutlook library does return the name of the organizer
=======================
Running this code with the InTheHand.WindowsMobile.PocketOutlook library running on WM 5 SmartPhone throws an ArgumentException on the second line (setting the value of the property)
app.Properties.Add("MyProperty", typeof(int));
app.Properties["MyProperty"] = (int)100;
MessageBox.Show(app.Properties["MyProperty"].ToString());
Same device and same code using Microsoft.WindowsMobile.PocketOutlook library shows the value of 100.
Is there something I need to do to initialize the custom properties collection?
Let me know
Thanks
Dan