Reminder/Meeting version/format

G

Guy Cohen

Hi all.
I use VB6 to add reminders and set meetings in outlook:

Set olApp = CreateObject("Outlook.Application")
Set objMeet = olApp.CreateItem(1) '1=olAppointmentItem

In the code I use :
objMeet.OptionalAttendees = strEmails

I have two machines, one with Outlook2000 and the other with Outlook XP.

When I run this code on the machine that has Outlook 2000, the machine with
Outlook XP gets the invitation correctly (I can see its a meeting
invitation, I can accept/reject etc.).
When I run this code on the machine that has Outlook XP, the machine with
Outlook 2000 gets the invitation as a message with unclear text.

Can I force the code to send the invitation in a low version format (i.e.
Outlook 97). ?

Please advise.
Guy
 
Top