Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Window Scripting Host
Message
From
27/03/2002 21:20:10
 
 
To
27/03/2002 18:46:54
Steve Summers
Pima County Superior Court
Tucson, Arizona, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00638196
Message ID:
00638240
Views:
21
>I need to be able to launch different files from VFP. For instance, I need to code a command button to launch Word or WordPerfect depending on the file type. In the Windows Run window I can point to a .wpd and it will open WordPerfect with the .wpd file. When I point the Window Run window at a .doc file it opens Word and the .doc file. I need this same functionality from VFP using a command button. Someone told me to use WSH to do this. Does anyone have any WSH code or even a better method to do this?
#define SW_SHOW_NORMAL 1
#define SW_SHOW_MINIMIZED 2
#define SW_SHOW_MAXIMIZED 3
oShell = createobject("WScript.Shell")
oShell.Run("c:\my documents\myfile.doc",SW_SHOW_NORMAL,.T.)
where the last parameter is .T. to run synchronously, that is for VFP to wait for the called program to end before continuing.


Alex Feldstein, MCP, Microsoft MVP
VFP Tips: English - Spanish
Website - Blog - Photo Gallery


"Once again, we come to the Holiday Season, a deeply religious time that each of us observes, in his own way, by going to the mall of his choice." -- Dave Barry
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform