Article ID: 158632 - Last Review: November 23, 2006 - Revision: 2.4 XL97: Limitations for Naming Visual Basic ModulesThis article was previously published under Q158632 On This PageSUMMARY
In Microsoft Excel 97, the names of Visual Basic for Applications modules
are subject to certain limitations. This article explains these limitations
and how to avoid problems when module names include illegal characters.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites: Microsoft Certified Partners - https://partner.microsoft.com/global/30000104 (https://partner.microsoft.com/global/30000104) Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice (http://support.microsoft.com/gp/advisoryservice) For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS (http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms) Changing the Name of a Module in Microsoft Excel 97In Microsoft Excel 97, you can rename a module by activating the module, clicking to the right of "(Name)" in the Properties window of the Visual Basic Editor, typing a new module name, and pressing ENTER.You can also programmatically change the name of a module by using code similar to the following: Limitations for Naming Modules in Microsoft Excel 97In Microsoft Excel 97, module names can include the following characters:
Module names cannot exceed 31 characters in length. Module names cannot start with a numeric character (0-9) or an underscore character (_). Module names must start with an alphabetical character (A-Z, a-z). If you try to rename a module so that its name includes illegal characters, you will receive the following error message:
Not a legal object name: '<module name>'
Names of Modules That You Created in Earlier Versions of Microsoft ExcelIf you open a workbook that contains modules with names that include characters that are illegal in Microsoft Excel 97, the modules and the macros they contain are still available.None of the modules are renamed by Microsoft Excel 97. However, if a module's name contains an exclamation point, the exclamation point is replaced on the screen by a question mark. However, the actual name of the module does not change. For example, if you open a Microsoft Excel 5.0 or 7.0 workbook that contains the following three modules, Microsoft Excel 97 may change the module names. The following table illustrates how the module names would appear. Original Module name that appears module name in the Project Window --------------------------------------------- Module!1 Module?1 My Module My Module xyz.Module xyz.Module For more information, see the following article in the Microsoft Knowledge Base: 159465
(http://support.microsoft.com/kb/159465/EN-US/
)
XL97: "Module not Found" Error Opening Workbook
Note that renaming modules may require that you modify your Visual Basic
macro code wherever it refers to a module by name.
Exporting or Importing Modules with Names That Contain Illegal CharactersIn Microsoft Excel 97, you can export a Visual Basic module to a separate file by activating the module and clicking Export File on the File menu. This works even if the module name includes illegal characters.However, when you click Import File on the File menu and attempt to import a file, you may receive the following error message
Not a legal object name: '<module name>'
This problem occurs if the VB_Name attribute in the file contains any illegal characters. To prevent this problem from occurring, follow these steps:
| Article Translations
|

Back to the top
