Dear Reader,
I have successfully managed to send a meeting request (via VB6):
Dim olApp As Outlook.Application
Dim olMail As Outlook.AppointmentItem
On Error GoTo ErrorHandler
Set olApp = New Outlook.Application
Set olMail = olApp.CreateItem(olAppointmentItem)
As you can see in the above code. This works well. My problem is this:
The user can respond by one of four buttons:
-Accept
-Decline
-Tentative
-Request Time Adjust
I want to be able to give the user only 2 buttons:
-Accept
-Decline
When using "Set olMail = olApp.CreateItem(olMailItem)" this is possible but when sending "Set olMail = olApp.CreateItem(olAppointmentItem)" it does not allow you.
Is there anything I'm missing or should I just live with it.
Thanking you in advance for all your help.
Regards,
Barry