Prevent Users To Paste Documents in View
Sometimes users are not allowed to create documents however, when they copy and paste a document in a view, the create them after all.
To prevent this, add the following code to the Querypaste-Event of the view:
Sub Querypaste(Source As Notesuiview, Continue As Variant)
Msgbox "You are not allowed to paste documents!"
continue=False
End Sub