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

Re: Reminder/Meeting version/format by Doug

Doug
Sat Oct 23 18:48:04 CDT 2004

You would be better off asking this in an Outlook newsgroup. This one is
for visual basic for applications with that application being Word.

--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP
"Guy Cohen" <imp_l@netvision.net.il> wrote in message
news:eaRd4cSuEHA.1404@TK2MSFTNGP11.phx.gbl...
> 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
>
>