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… Continue Reading Vérifiez si un VBProject est protégé par VBA dans Microsoft Excel