P
(PeteCresswell)
I'd like to create a directory that anybody can add a document to, anybody can
delete a document from, and anybody can open a document from - but which nobody
can save a modified document to.
I've got a little app that lets people select documents and then adds them to
the directory in question.
The idea is that if a document is in there, it's the Real Deal and nobody had
fooled around with it.
I can live with people being to manually create docs into the folder that are
renamed/modified copies of docs already there. I just don't want anybody to be
able to open document ABC.xls, for instance, and then modify it and save it
under the same name. Somebody saving a modified version and calling it
ABC2.xls, I can live with.
Anybody been here?
The root of this is that I have no guarantee that users will be saving documents
whose suffixes follow any rules known to my app - so I'm opening the docs in VBA
using FollowHyperLink instead of instantiating a pointer to the app in question
and the opening the document ReadOnly. This allows the app to tolerate any
document the user puts in there and has something installed on their PC that
will read it.
Or am I missing some better way to handle this?
delete a document from, and anybody can open a document from - but which nobody
can save a modified document to.
I've got a little app that lets people select documents and then adds them to
the directory in question.
The idea is that if a document is in there, it's the Real Deal and nobody had
fooled around with it.
I can live with people being to manually create docs into the folder that are
renamed/modified copies of docs already there. I just don't want anybody to be
able to open document ABC.xls, for instance, and then modify it and save it
under the same name. Somebody saving a modified version and calling it
ABC2.xls, I can live with.
Anybody been here?
The root of this is that I have no guarantee that users will be saving documents
whose suffixes follow any rules known to my app - so I'm opening the docs in VBA
using FollowHyperLink instead of instantiating a pointer to the app in question
and the opening the document ReadOnly. This allows the app to tolerate any
document the user puts in there and has something installed on their PC that
will read it.
Or am I missing some better way to handle this?