am using the following to open a Word document on the client side:
function launchWord(strFile)
{
var oWord = new ActiveXObject("Word.Application");
if (oWord != null)
{
oWord.Visible = true;
oWord.Documents.Open(strFile);
}
}
This works fine when I have strFile set to something like...
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.