I give up. I've tried using the windowsmobile.pocketoutlook to create an appointment, (just a basic "Meeting 8:00" appointment) but am having no luck.
Can someone please post a VB.NET code snippet that shows how to do it?
Thanks!
Imports InTheHand.WindowsMobile.PocketOutlook
...
Dim a As New Appointment
a.Subject = "Meeting"
a.Start = new DateTime(2007,12,6,8,0,0)
a.Update()
Thanks, I tried that but get a
Cannot Update a PimItem that has not been Added to a Collection error.
Alternatively:-
Dim a As Appointment = session.Appointments.Items.AddNew()
a.Subject = "My New Appointment"
'etc