You can do this with WSH (Windows Scripting Host). I believe it only works in IE and works best with VBScript though Javascript can work as well (object based). Here is a simple example...
Code:
<script language="vbscript">
Dim WshShell
Set WshShell = CreateObject("Wscript.shell")
WshShell.Run ("winword.exe")
</script>
Alot of the VBA (Visual Basic for Applications) ideaology should work here. You should be able to create docs, modify docs, run macros, ets. Get yourself a good WSH book.
Good luck, [sig]<p>Rob<br><a href=mailto:robschultz@yahoo.com>robschultz@yahoo.com</a><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
"Focus on the solution to the problem,<br>
not the obstacles in the way."<br>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[/sig]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.