Ajouter du contenu à un module à partir d’un fichier en utilisant VBA dans Microsoft Excel
Si vous ne souhaitez pas ajouter un module complet, vous pouvez ajouter uniquement les procédures manquantes à un module existant en utilisant la macro ci-dessous. Il ajoute le contenu d’un fichier texte à un module existant:
Sub ImportModuleCode(ByVal wb As Workbook, _ ByVal ModuleName As String, ByVal ImportFromFile As String) ' imports code to ModuleName in wb from a textfile named ImportFromFile Dim VBCM As CodeModule If Dir(ImportFromFile) = "" Then Exit Sub On Error Resume Next Set VBCM = wb.VBProject.VBComponents(ModuleName).CodeModule If Not VBCM Is Nothing Then VBCM.AddFromFile ImportFromFile Set VBCM = Nothing End If On Error GoTo 0 End Sub
Exemple:
ImportModuleCode ActiveWorkbook, "TestModule", "C:\FolderName\NewCode.txt"