BUG: Ambiguous Name Detection for Private Functions Named "Main" (191693)



The information in this article applies to:

  • Microsoft Visual Basic Learning Edition for Windows 6.0
  • Microsoft Visual Basic Professional Edition for Windows 6.0
  • Microsoft Visual Basic Enterprise Edition for Windows 6.0

This article was previously published under Q191693

SYMPTOMS

When a Visual Basic project contains two or more functions named "Main" (but only one is Public) and Sub Main is set as the Startup Object, the following error is received when the Project is compiled or run:
"Ambiguous name detected: main"

CAUSE

In addition to Public functions, Visual Basic also searches for Private functions for any name conflict.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a new Standard EXE project in Visual Basic. Form1 is created by default.
  2. Select Project Properties from the Project menu.
  3. Change the Startup Object to Sub Main.
  4. Add two code modules to the Project by choosing Add Module from the Project menu twice.
  5. Paste the following code in the code window of Module1:
          Public Sub Main
             Msgbox "Hello"
          End Sub
    						
  6. Paste the following code in the code window of Module2:
          Private Sub Main
             Msgbox "Hi"
          End Sub
    						
  7. Press the F5 key to run the project. Note that the following error message is received:
    "Ambiguous name detected: main"

Modification Type:MajorLast Reviewed:5/13/2003
Keywords:kbbug kbpending KB191693