Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Standard email client
Message
From
26/04/2000 06:41:46
Mark Hall
Independent Developer & Voip Specialist
Keston, Kent, United Kingdom
 
 
To
26/04/2000 05:38:21
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00363492
Message ID:
00363499
Views:
21
>I want to determine the standard email client. How can I do this.
>The reason to find out which client is used is, that I want to use Outlook automation if it is Outlook, in the other case I want to use ShellExecute.

You could try to create an Outlook object, then if that fails, go on to use ShellExecute

LOCAL loMail
loMail = CREATEOBJECT("Outlook.Application") && Not sure if classname is correct
IF VARTYPE( loMail) = "O" AND NOT ISNULL( loMail)
Do Outlook stuff
ELSE
Do ShellExecute Stuff
ENDIF
Regards
Mark

Microsoft VFP MCP
Menulib - OO Menus for VFP www.hidb.com/menulib
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform