Hi, I have created a webpage which can display users current appointments they have. I've used the code below to achieve that.
How could I modify it so that it so that I could use a similar method to add an appointment for a user?
Thanks v much
service.Credentials = New WebCredentials(userEmail, userPassword)
service.AutodiscoverUrl("administrator@mydomain.co.uk")
service.ImpersonatedUserId = New ImpersonatedUserId(ConnectingIdType.SmtpAddress, EmailAddress)
Dim foundAppointments As FindItemsResults(Of Appointment) = service.FindAppointments(WellKnownFolderName.Calendar, New CalendarView(DateTime.Now, DateTime.Now.AddDays(1)))
For Each app As Appointment In foundAppointments
If Now() >= app.Start And Now() <= app.End Then
TextBox1.Text += "Subject: " + app.Subject + vbCrLf
Te ...
Go to the complete details ...