Comprobar si un VBProject está protegido con VBA en Microsoft Excel
Con la función a continuación, puede verificar si un VBProject está protegido antes de intentar editar el proyecto: 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… Seguir leyendo Comprobar si un VBProject está protegido con VBA en Microsoft Excel