Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Outlook OLE
Message
From
12/09/2001 15:04:51
 
 
To
12/09/2001 10:51:37
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Miscellaneous
Thread ID:
00555272
Message ID:
00555643
Views:
21
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform