K
Kosic
i wrote this js function in HTML:
function OpenWord()
{
var a = new ActiveXObject("Word.Application"); a.Visible = true;
a.WindowState = 1; window.blur(); a.Activate();
}
if the it runs at localhost, it is OK, but it fail to create object when
running at other client. ( The same Office suite was installed in server &
client).
How to create a new WORD document ? Any ideas in operating VBA on
ActiveXObject? thanks.
Kosic.
function OpenWord()
{
var a = new ActiveXObject("Word.Application"); a.Visible = true;
a.WindowState = 1; window.blur(); a.Activate();
}
if the it runs at localhost, it is OK, but it fail to create object when
running at other client. ( The same Office suite was installed in server &
client).
How to create a new WORD document ? Any ideas in operating VBA on
ActiveXObject? thanks.
Kosic.