This document is archived and information here might be outdated. Recommended version. |
Creates a code module in the specified VBA project.
[Visual Basic .NET]
Public Sub CreateCodeModule ( _
ByVal docName As String, _
ByVal moduleName As String _
)
[C#]
public void CreateCodeModule (
string docName,
string moduleName
);
docName specifes the name of the VBA project in which you want to create the module.
moduleName specifes the name of the module that you want to create.
If you want to create the module in the current document, docName will be "Project".
If you want to create the module in the Normal template, docName will be "Normal".
If you want to create the module in a template, docName will be "TemplateProject".