Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sample OutLook in VFP Form 10

Status
Not open for further replies.
ramani
Are you talking about outlctlx.dll? I've already registered it. If you're talking about another dll please tell me.
Mike
Thank you for your information. I wanted to know if the .dbx format is still used. Thank you again for your help.
Rehards

As I go deeper the road seems to go further. We're just simply pasangers on the road of knowledge.
 
Great work guys.

How do you merge data into the forms (eg email to, subject etc)

Alan Arons [ponder]
 
Hi Alan,

Probably this FAQ will help you..
How can I send an Email using OUTLOOK from VFP?
faq184-766

There are other nice FAQs also in the FAQs section and it will be quite easy to integrate one of that for your requirement.

:)

____________________________________________
ramani - (Subramanian.G) :)
 
What I want to do, is merge data into the email form, and then give the user the opportunity to edit it before clicking the send button.

Rather than reinvent the wheel, I wanted to use Outlook for review and editing.

Alan Arons [ponder]
 
Hi


***********************************************
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, STRING cAction, STRING cFileName, ;
STRING cParams, STRING cDir, INTEGER nShowWin

lcMailTo = "ramani_g@yahoo.com"
lcCopyTo = "anyOne@anyMail.Com"
lcSubject = "This is a Quick Email"
lcBody = "This is a quick way of creating " + ;
"the email and starting it for the user."

** Collect all info as.... lcMail
lcMail = "mailto:" + lcMailto + "?CC=" + lcCopyTo + ;
"&Subject=" + lcSubject + "&Body=" + lcBody

** Shell execute to do your job.
ShellExecute(0,"open",lcMail,"","",1)
***********************************************

:)

____________________________________________
ramani - (Subramanian.G) :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top