Controllare se un VBProject è protetto utilizzando VBA in Microsoft Excel
Con la funzione sottostante puoi controllare se un VBProject è protetto prima di provare a modificare il progetto: 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 Controllare se un VBProject è protetto utilizzando VBA in Microsoft Excel