Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Outlook OLE
Message
De
12/09/2001 15:04:51
 
 
À
12/09/2001 10:51:37
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
00555272
Message ID:
00555643
Vues:
20
This message has been marked as the solution to the initial question of the thread.
>Thank you by you help.
>
>but... how do i invite to others persons? which are the code?...
>i type "oappt.send" but nothing...
>
>please helpme.

Add .MeetingStatus = 1:
oOL = CreateObject("Outlook.Application")
oAppt = oOL.CreateItem(1) && olAppointmentItem
With oAppt
	.Recipients.Add("My Pal")
	.Subject = "Let's go for some beers"
	.Location = "Hooters @ Wurzbach"
	.Body = "Just a test"
	.Start = {^2001/09/14 14:00:00}
	.End = {^2001/09/14 15:00:00}
	.MeetingStatus = 1	&& olMeeting
	.Save
	.Send
EndWith
HTH
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform