I am trying to create an MS Outlook appointment from inside MS Access using the following code:
Dim oOL As Outlook.Application
Dim oItem As Outlook.AppointmentItem
Set oOL = New Outlook.Application
Set oItem = oOL.CreateItem(olContactItem)
The createItem throws this error:
-2079129595
You don't have appropriate permission to perform this operation.
This is not happening with all user accounts; only some. The Access dB is running on terminal services.
Help !
TRYP
Dim oOL As Outlook.Application
Dim oItem As Outlook.AppointmentItem
Set oOL = New Outlook.Application
Set oItem = oOL.CreateItem(olContactItem)
The createItem throws this error:
-2079129595
You don't have appropriate permission to perform this operation.
This is not happening with all user accounts; only some. The Access dB is running on terminal services.
Help !
TRYP