Author: Lou Adler
How to make a Word document read-only when opend in a TOleContainer
Answer:
You could use the document's Protect method, e.g.:
1 { ... }2 OleContainer1.DoVerb(ovShow);
3 OleContainer1.OleObject.Protect(wdAllowOnlyComments, EmptyParam, EmptyParam);
4 { ... }