Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Outlook OLE
Message
De
11/09/2001 16:58:14
 
 
À
11/09/2001 16:18:34
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
00555272
Message ID:
00555282
Vues:
21
>Hello...
>How invite other persons to a appointment or event from calendar of outlook 97 using OLE ?

This snippet should give you a start:
oOL = CreateObject("Outlook.Application")
oAppt = oOL.CreateItem(1) && olAppointmentItem
oAppt.Recipients.Add("my Pal")
oAppt.Subject = "Let's go to Hooters"
oAppt.Location = "Hooters @ Wurzbach"
oAppt.Start = {^2001/09/14 14:00:00}
oAppt.End = {^2001/09/14 15:00:00}
oAppt.Display
Open invitation (no start and end) ;) You should set the .Start and .End properties too.
[updated]

HTH
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform