Thread: [Solved] Block Replace
View Single Post
 
Old 09-04-2019, 03:16 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,369
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

A macro to disable the Find function can be as simple as:
Code:
Sub EditReplace()
MsgBox "Go away!": Exit Sub
End Sub
Disabling macros when the document is opened can easily circumvent that. And, as I already said, there are other methods can be used to replicate content without the need for copying & pasting. For example, using an INCLUDETEXT field, then unlinking it, or using another macro that bypasses the user interface.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote