Hi guys...
I have buit a web page that needs to link to a number of word, excel, powerpoint and access files. I want the links to open the files in the full applications rather than the web browser (ie6).
I have tried
But can't get it to work.
I am using DW8 and Office 2003.
Any ideas ?
Thanks
Simon
I have buit a web page that needs to link to a number of word, excel, powerpoint and access files. I want the links to open the files in the full applications rather than the web browser (ie6).
I have tried
Code:
<script language="JavaScript">
function startWord(strFile)
{
var myApp = new ActiveXObject("Word.Application");
if (myApp != null)
{
myApp.Visible = true;
myApp.Documents.Open(strFile);
}
}
</script>
But can't get it to work.
I am using DW8 and Office 2003.
Any ideas ?
Thanks
Simon