How to disable save with OLE word object?

M

Mike

I have an embedded word document that the user opens and edits with the
following code ( behind a button click )
Dim Word_Obj As Object
Me!txtNarative.Verb = -2
Me!txtNarative.Action = 7
Set Word_Obj = txtNarative.Object.Application.wordbasic
Word_Obj.ViewPage

I can't figure out how to make it open as read only so the users can see but
not change the embedded word doc
 
Top