Microsoft Excel에서 VBA를 사용하여 모듈에 프로 시저를 추가
코드가 포함 된 별도의 텍스트 파일을 사용하지 않고 모듈에 코드를 추가 할 수 있습니다.
아래 매크로는이를 수행하는 방법을 보여줍니다. 추가하려는 코드를 포함하도록 매크로를 사용자 지정해야합니다.
Sub InsertProcedureCode(ByVal wb As Workbook, ByVal InsertToModuleName As String) ' inserts new code in module named InsertModuleName in wb ' needs customizing depending on the code to insert Dim VBCM As CodeModule Dim InsertLineIndex As Long On Error Resume Next Set VBCM = wb.VBProject.VBComponents(InsertToModuleName).CodeModule If Not VBCM Is Nothing Then With VBCM InsertLineIndex = .CountOfLines + 1 ' customize the next lines depending on the code you want to insert .InsertLines InsertLineIndex, "Sub NewSubName()" & Chr(13) InsertLineIndex = InsertLineIndex + 1 .InsertLines InsertLineIndex, _ " Msgbox ""Hello World!"",vbInformation,""Message Box Title""" & Chr(13) InsertLineIndex = InsertLineIndex + 1 .InsertLines InsertLineIndex, "End Sub" & Chr(13) ' no need for more customizing End With Set VBCM = Nothing End If On Error GoTo 0 End Sub
예 :
InsertProcedureCode Workbooks("WorkBookName.xls"), "Module1"