Re: run windows program
Walter Haslbeck <[email protected]>
| Newsgroups | gmane.comp.lang.4gl.fourjs.user |
|---|---|
| Organization | AMG GmbH |
| Message-ID | <[email protected]> |
Hi,
> LET win_cmnd = "c:\\\\test.eml"
> CALL WinExecWait(win_cmd) returning ...
>
>
> I would like it to start Outlook with the file test.eml but instead 4js
> crashes.
Try:
CALL WinExecWait("cmd /c START C:\\\\test.eml")
Walter