
Why doesn't OWA display this properly?
I have a custom form that I've created. I use this to set appointments for
our service techs from an access database.
The code for this is as follows:
Set MyOLApp = CreateObject("Outlook.Application")
Set myNameSpace = MyOLApp.GetNamespace("MAPI")
Set myRecipient = myNameSpace.CreateRecipient(strStaff)
myRecipient.Resolve
If myRecipient.Resolved Then
Set myFolder = _
myNameSpace.GetSharedDefaultFolder _
(myRecipient, olFolderCalendar)
End If
Set myApptItem = myFolder.Items.Add("IPM.Appointment.SetTime")
If the techs access the form from Outlook the custom form is displayed and
all is well. If they TRY and access the form from Outlook Web Access it
comes up as a meeting request and they cannot edit the appt. It just lets
them reply to the request. If I set an appointment on my own calendar using
this method It displays like it should.
Is it possible to set these for others so they display like a normal
appointment in OWA?
Randy