Byg Software

008

 
How do I stop a user from saving? 
 
Put this code in the "ThisWorkbook" module:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Cancel = True
End Sub  
 
Close