'DANS THISWORKBOOK, VERROUILLE LES PAGES A LA FERMETURE D'EXCEL + MASQUE LE CLIC DROIT ONGLETS
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim Sh As Worksheet
Application.ScreenUpdating = False
For Each Sh In ThisWorkbook.Sheets
Sh.Protect "toto", UserInterfaceOnly:=True
'Application.CommandBars("Ply").Enabled = False <- Ne fonctionne pas
Next
End Sub