I have one problem:When i double click on view row it opens a selected document in form with document was created(How stay in view ?(not open a form)).A form is in read mode but when i double click on it it go’s to editing mode.What should i do to stay in read mode ?
Subject: form editing mode
Use the QueryOpenDocument event in the view to stop opening the document. Use continue = false
in this event.
If you want to stop people to go to editmode, you can use the QueryModeChange event, also put
continue = false
in there. On the other hand, if you want to prohibit people to edit the document, you should protect your document, by using Authors fields.
cheers,
Tom
Subject: RE: form editing mode
thx its exactly what i wanted.