Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Email Object
Message
 
 
To
04/04/2001 08:17:03
Agnes Cheng
DynamicTech Consultants Ltd.
Hong Kong, Hong Kong
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Miscellaneous
Thread ID:
00491773
Message ID:
00491791
Views:
7
For Outlook 2000, the file is called VBAOUTL9.CHM. It is optional when installing Outlook. Search your hard drive for this file.

The Outlook 97 version is called VBAOUTL8.HLP.

HTH.

>I use the following sample to send the email in vfp.
>It runs very well.(This code is given by my friends)
>However, Where Can i know all the properties/method of "Outlook.application" this object ???
>
>Thanks
>From Agnes
>------------------------------------
>#DEFINE o1MailItem 0
>#DEFINE True .T.
>#DEFINE False .F.
>#DEFINE o1ImportanceHigh 1
>
>oOutLookObject = CreateObject("Outlook.Application")
>oEmailItem = oOutLookObject.CreateItem(o1MailItem)
>with oEmailItem
> .Body = "Test of EMAIL Generated Messages from Visual Foxpro"
> .to = "szesze@dynamictech.com.hk"
> .cc = "info@dynamictech.com.hk"
>&& .from = "slchange@dynamictech.com.hk"
>&& .bcc = ""
> .Subject = "Test Message"
> .ReadReceiptRequested = False
> .Importance = o1ImportanceHigh
> .Send
>endwith
Larry Miller
MCSD
LWMiller3@verizon.net

Accumulate learning by study, understand what you learn by questioning. -- Mingjiao
Previous
Reply
Map
View

Click here to load this message in the networking platform