Switch off the Menu Modify and the function COPY/CUT/PASTE

F

framm07

Hello!
I would like to know if it is possible Switch off the Menu Modify and the
function COPY/CUT/PASTE in a specific document in Microsoft Word (97-2K or
higher).
For example, through routine, or macros, or through some options of the
program.

Thank you very much.

Framm07
 
R

Ravi \(Newgen\)

Hi Framm07,

Using VBA macros we can override COPY/CUT/PASTE.

Try with this code.

''''''''
Sub EditCopy()
'add your code here or leave it blank
End Sub

Sub EditCut()
'add your code here or leave it blank
End Sub

Sub EditPaste()
'add your code here or leave it blank
End Sub
'''''''''
These macros will work only when Macros security setting
is in low level or medium level.

Hope this is useful.

-Ravi
 
F

framm07

....Hi Ravi,
thank you for the reply.
Unfortunately I say you that I have no much experience with the VBA. So, can
you help me? In particular, the sub routine that you write me, where set I
them in project? And, you write "add your code OR Leave it blank". Can you
"show" me an example?
Finally, is it possible to hide or disable the Menu Modify in Word?
Thank You and have a nice day (Well, here in Europe is morning..;-))
Fraam07
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top