XL97: How to Programmatically Change the Project Name Property

Last reviewed: March 13, 1998
Article ID: Q161214
The information in this article applies to:
  • Microsoft Excel 97 for Windows

SUMMARY

By default, when you open a new workbook in Microsoft Excel 97, the Name property for the workbook project is "VBAProject" (without the quotation marks). This naming convention may cause a problem if you manually or programmatically attempt to create a reference from one project to another. If you try to create a reference between two projects that have the same Name property, you receive the following error message:

   Name conflicts with existing module, project, or object library

You can change the Name property for a project in the Visual Basic Editor Properties window in the Visual Basic Editor, or you can programmatically change the Name property. This article provides sample macro code for changing the Name property of a project.

MORE INFORMATION

Microsoft 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 engineers 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 the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/default.asp

To programmatically change the Name property of a project, do the following:

  1. Close and save any open workbooks.

  2. Open a new workbook and start the Visual Basic Editor (ALT+F11).

  3. On the Insert menu, click Module.

  4. In the module sheet, type the following code:

          Sub Change_Name()
    
              NewName = InputBox("Type your new project name")
    
              If NewName <> "" Then   'You did not click Cancel in the InputBox
                  Application.VBE.VBProjects("VBAProject").Name = NewName
              End If
    
          End Sub
    
    

  5. Run the Change_Name macro.

  6. When you are prompted, type a name for the project and click OK.

The Name property for the project is changed to the name you typed in the input box.

For additional information, please see the following articles in the Microsoft Knowledge Base:

   ARTICLE-ID: Q160647
   TITLE     : XL97: How to Programmatically Create a Reference

   ARTICLE-ID: Q156882
   TITLE     : XL97 Err Msg: "Name Conflicts with Existing Module"

REFERENCES

For more information about References, click the Index tab in Visual Basic for Applications Help, type the following text

   references, adding to project

and then double-click the selected text to go to the "References Command (Tools Menu)" topic.


Additional query words: 97 for Windows XL97
Keywords : kbcode kbprg xlvbahowto xlvbainfo
Version : WINDOWS:97
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: March 13, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.