Hello,
The problem is I want to open word(multiple sessions if possible) with javascript, I know it possible using VB-script.
Is there any one whoe can help me?
Thanks
Printable View
Hello,
The problem is I want to open word(multiple sessions if possible) with javascript, I know it possible using VB-script.
Is there any one whoe can help me?
Thanks
it's not possible with javascript. you can't open programs.
don't think it is possible.
Oh,
but aren't there some tricks to create a word documtent and then not open it but showing a link to the newly created file?
You can open multiple word docs which reside on the server (not sure if this is what you want (they can be the same docs or different ones). But this just opens them:
Code:<html>
<head>
<script language="javascript">
function openDocs(){
for(var i=0;i<3;i++)
window.open('word'+i+'.doc','_new');
}
</script>
</head>
<body onLoad="openDocs();">
blablabla
</body>
</html>
Thanks, that about what I had in mind.
i think that will pop open a file download box for the user though.
That's fine too. Makes it easier for the mightbe users I think.
Well, actually if they have microsoft word, or another program associated with .doc files, then it will open microsoft word, so, hey, that might get done what you want to accomplish :D