Hi!
How can I do with ActiveX / OLE to disable Save, Save As and Print options in "Word.Applications"?
I must open a .doc and the user can only read. He can't save changes or print...
Where I can search for complete list of methods and datas?
Regards!
Maurilio
OLE / ActiveX and Word.Application (disable Save command)
- Maurilio Viana
- Posts: 252
- Joined: Tue Oct 25, 2005 2:48 pm
- Location: Garça/Garza/Heron City - Brazil
- Contact:
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: OLE / ActiveX and Word.Application (disable Save command
Search your hard disk for VBAWRD*.CHM or similar.
EMG
EMG
- Maurilio Viana
- Posts: 252
- Joined: Tue Oct 25, 2005 2:48 pm
- Location: Garça/Garza/Heron City - Brazil
- Contact:
Re: OLE / ActiveX and Word.Application (disable Save command
Enrico,
I have Office XP 2003 and I found only VBAOWS10.chm
It haven't any about word.application...
Regards,
Maurilio
I have Office XP 2003 and I found only VBAOWS10.chm
It haven't any about word.application...
Regards,
Maurilio
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: OLE / ActiveX and Word.Application (disable Save command
Maurilio :Maurilio Viana wrote:Hi!
How can I do with ActiveX / OLE to disable Save, Save As and Print options in "Word.Applications"?
I must open a .doc and the user can only read. He can't save changes or print...
Where I can search for complete list of methods and datas?
Regards!
Maurilio
Try to open as ReadOnly
Code: Select all
lReadOnly := TRUE
oDocs := oWord:Get( "Documents")
oActiveDoc := oDocs:Open( cFileName , , lReadOnly )
Vikthor
- Maurilio Viana
- Posts: 252
- Joined: Tue Oct 25, 2005 2:48 pm
- Location: Garça/Garza/Heron City - Brazil
- Contact:
Re: OLE / ActiveX and Word.Application (disable Save command
Thanks, Vikthor!!!
I'll try it!
Regards
Maurilio
I'll try it!
Regards
Maurilio