Vérifiez si un VBProject est protégé par VBA dans Microsoft Excel
Avec la fonction ci-dessous, vous pouvez vérifier si un VBProject est protégé avant d’essayer de modifier le projet:
Function ProtectedVBProject(ByVal wb As Workbook) As Boolean ' returns TRUE if the VB project in the active document is protected Dim VBC As Integer VBC = -1 On Error Resume Next VBC = wb.VBProject.VBComponents.Count On Error GoTo 0 If VBC = -1 Then ProtectedVBProject = True Else ProtectedVBProject = False End If End Function
Exemple:
If ProtectedVBProject(ActiveWorkbook) Then Exit Sub