This code will prevent a user from deleting any Form called "Questions".
Stick this in the QueryDocumentDelete event
Dim col As notesdocumentcollection
Set col = source.documents
Dim doc As notesdocument
Set doc = col.getfirstdocument
Do Until doc Is Nothing
If doc.Form(0)="Questions" Then
continue = False
Messagebox "Please use the button!"
End If
Set doc = col.getnextdocument(doc)
Loop