Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Save an Event in Microsoft Outlook?
Message
De
16/05/2003 13:57:15
 
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Divers
Thread ID:
00789232
Message ID:
00789364
Vues:
20
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>Is this possible?
>I have an events scheduler ( very simple vfp app ) and wanted to know if I can send events to microsoft outlook scheduler ...
>

Sure, you'd use code along these lines:

oOutlook = CreateObject("Outlook.Application")
oNS = oOutlook.GetNameSpace("MAPI")

oItem = oOutlook.CreateItem(1) && Appointment
WITH oItem
* Fill in the properties with the information from your
* app.

* Then save the new appointment
.Save()
ENDWITH
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform