1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| Sub autorisation()
Dim i As Integer, j As Integer
Workbooks(1).Worksheets("AGO").Unprotect "bbil"
i = 0
i = CInt(InputBox("Veuillez entrer votre mot de passe :"))
'''''' autorisation CODIR '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
If i = 12 Then
Sheets("AGO").Visible = True
Sheets("Listes").Visible = True
Sheets("Liste_Mots_Clés").Visible = True
Sheets("Statistiques").Visible = True
Workbooks(1).Worksheets("AGO").Activate
Cells.EntireRow.Hidden = False
Else
MsgBox "Vous n'avez pas accès aux décisions CODIR.", vbExclamation
End If
Workbooks(1).Worksheets("AGO").Protect "bbil"
End Sub |
Partager