open a word document
How to open a word document using javascript???
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijaya KadiyalaPosted Mar 10, 2009, 9:58 AM
Hi
There is no otherway apart from ActiveXObject
Thanks -- Vijaya Kadiyala
http://dotnetvj.blogspot.com
kamlesh sharmaPosted Feb 4, 2009, 4:53 AM
Hi,
Is there any way to open/create/edit a word doc from java script other then 'ActiveXOBject'?
Thanks
Kamlesh
Niradhip ChakrabortyPosted Aug 14, 2008, 6:50 PM
gives a security alert with normal preferences set):
var wordDoc=new ActiveXObject('Word.Document');
// creates a new ActiveX object
wordDoc.Application.Visible=true;
// displays the application (Word) with the (empty) document loaded
// ...
// Do here whatever you like
// ...
wordDoc=null; // dispose of the reference
Muhammad Shahid FarooqPosted Aug 14, 2008, 2:20 PM
See the following link:
http://labnol.blogspot.com/2006/05/open-microsoft-excel-word-application.html