Excel_PasteEvent.xls"]Workbook Demo.
Hi all. Here is the signature of the paste event handler :
Private Sub Workbook__Paste _
(ByVal Target As Object, ByRef Cancel As Boolean)
'prevent pasting into Cell A1.
If Not Intersect(Target, Range("a1")) Is Nothing Then
Cancel =...