OZONE Asylum
Forums
Stupid Basic HTML
Start programs in html?
This page's ID:
9592
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Well, if you settle for IE only you can use VBScript... This example opens M$Word plus a file that you specify. you should be able to adapt it, work with "Set objWord = CreateObject("Word.Application")" to the application that you want to open. Just play around with it and see what it does, ok. [code] <HTML> <HEAD> <SCRIPT LANGUAGE=VBScript> <!-- This in an activeX way of opening a file outside of your browser--> Dim objWord Sub Btn1_onclick() call OpenDoc("this/is/your/http/or/file/path/to/your/document.doc") End Sub Sub OpenDoc(strLocation) Set objWord = CreateObject("Word.Application") objWord.Visible = true objWord.Documents.Open strLocation End Sub </SCRIPT> <TITLE>Launch Word</Title> </HEAD> <BODY> <INPUT TYPE=BUTTON NAME=Btn1 VALUE="Open Word Doc"> </BODY> </HTML> [/code] /Dan [url=http://www.dmsproject.com/] [img]http://www.dmsproject.com/gif/sig3.gif[/img] [/url] [url=http://faq.ozoneasylum.com/FaqWiki/shownode.php?sortby=rating&id=260]{cell 260}[/url] -{ a vibration is a movement that doesn't know which way to go }-
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »