Hi,
Im having problems with the community edition. Im trying to add a new appointment and when i try it a have the following message error:
Access denied.
Im trying it in a Qtek S300 with Windows Mobile 5. The versión of InTheHand.WindowsMobile.PocketOutlook.dll is 2.0.60206.1
This is the code: (VB .NET)
Private Sub AddAppointment()
Dim
myapp As New InTheHand.WindowsMobile.PocketOutlook.OutlookSession
Dim App1 As New InTheHand.WindowsMobile.PocketOutlook.Appointment
App1 = myapp.Appointments.Items.AddNew
With App1
.Body = "Appointment with " & Name.Text
.Start =
New DateTime(Year(RevDate.Value), Microsoft.VisualBasic.Month(RevDate.Value), Microsoft.VisualBasic.Day(RevDate.Value), RevHour.Value, RevMinutes.Value, 0)
.Subject = "Appointment with " & Name.Text
.Update()
End With
myapp.Dispose()
End Sub
Can you please help me?