<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2>Thanks Ken,<BR>
<BR>
The open process works except I found a problem which may also have been my problem earlier.&nbsp; I discovered that if I have a space in the path to the document, I get an error message.&nbsp; In this case MS Word opens but I get a dialog box saying the file name or path is invalid.&nbsp; For example, if the file is named "myfile.doc" this statements works:<BR>
<BR>
open process "c:/program files/Microsoft Office/Office10/Winword.exe c:/myfile.doc"<BR>
<BR>
If, however, the document name is "my file.doc" and I try:<BR>
<BR>
open process "c:/program files/Microsoft Office/Office10/Winword.exe c:/my file.doc"<BR>
<BR>
it does NOT work.&nbsp; I get the error message instead.&nbsp; Maybe Scott will know why it doesn't work if there is a space in the name.&nbsp; I am using MC 2.4.3.<BR>
<BR>
Philip<BR>
<BR>
<BR>
<BLOCKQUOTE TYPE=CITE style="BORDER-LEFT: #0000ff 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px">Philip,<BR>
<BR>
Try using "open process" instead; using the syntax:<BR>
<BR>
&nbsp; open process &lt;appPathWithParams&gt;<BR>
<BR>
where &lt;appPathWithParams&gt; is a quoted string with two parts: the path to the<BR>
application, a space, and then the path to the document. For example, to<BR>
load up Word with a doc on C: called "test.doc", you would do this:<BR>
<BR>
&nbsp; open process "c:/program files/Microsoft Office/Office10/Winword.exe<BR>
c:/test.doc"<BR>
<BR>
Not only does this launch it, but you can then "control" the process from<BR>
MetaCard if you wish (check out openProcesses, kill, etc.).<BR>
<BR>
Ken Ray<BR>
Sons of Thunder Software<BR>
Email: kray@sonsothunder.com<BR>
Web Site: http://www.sonsothunder.com/</BLOCKQUOTE><BR>
<BR>
</FONT></HTML>