Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
*.. Shut off Run Aplications Messages
=DDESetoption("SAFETY",.f.)
*.. attempt to establish a conveersation with Word for Windows
ln_channel = DDEInitiate("WINWORD", "System")
*.. If conversation fails attempt to run application
IF ln_channel < 0
RUN /n1 c:\your path\WINWORD.EXE
ln_channel = DDEInitiate("WINWORD", "System")
ENDIF
*.. open file
=DDEExecute(ln_channel, '[fileopen "c:\winword\test.doc"]')
ln_chan2 = DDEInitiate("WINWORD", "C:\WINWORD\TEST.DOC")
ln_text = DDERequest(ln_channel, "\doc")
? ln_text