hcl-bot
1
I have the need of open a word file via http in this way: http://server/folder/file.docIf I open the file in this way the file open in
read mode.
How can I acces with write access ?
With IIS is very simple, create a virtual directory and give write/read access. I’m sure that this is possible also with domino.
Bye
Acola
P.S.
Excuse me for my bad english
Subject: open word files with write access via http
Hi Andrea,
You could use JScript and COM to get this result.
var Word = new ActiveXObject(“Word.Application”);
Word.Visible = true;
var doc = Word.Documents.Add(“c:\folder\file.doc”);
doc.Activate();
Something like that would do what you wanted, a long time ago.
Success with your new problems,
Loek Bergman