Article ID: 221225 - Last Review: May 13, 2003 - Revision: 2.0

FIX: Calling Method in User Ctrl w/ParamArray Causes Fatal Exception During Compile

This article was previously published under Q221225

On This Page

Expand all | Collapse all

SYMPTOMS

If no parameter is passed, a fatal exception occurs in Visual Basic 6.0 when you compile a project that calls a method in a user control with a ParamArray parameter.

RESOLUTION

There is no workaround available for this problem. You must pass at least one parameter to avoid it.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.

This bug was corrected in Visual Studio 6.0 Service Pack 3. For more information about Visual Studio service packs, please see the following articles in the Microsoft Knowledge Base:

194022 INFO: Visual Studio 6.0 Service Packs, What, Where, Why  (http://support.microsoft.com/kb/194022/EN-US/ )

194295 HOWTO: Tell That Visual Studio 6.0 Service Packs Are Installed  (http://support.microsoft.com/kb/194295/EN-US/ )

MORE INFORMATION

Steps to Reproduce Behavior

  1. Start a new ActiveX control project.
  2. Add the following method:
    Option Explicit
    
    Public Function PassVararg (ParamArray t() As Variant) As Long
    End Function
    					
  3. Compile the user control.
  4. Start a new Standard EXE Project. Form1 is created by default.
  5. Make a reference to the user control that you just created.
  6. Place an instance of the user control on Form1.
  7. Change the name of the user control to Ocx1.
  8. In Form_Load event procedure, add the following code:
    Dim k as Long
    k = Ocx1.PassVararg
    					
  9. Save the project.
  10. Compile the project.

    RESULT: A fatal exception occurs. This problem only occurs in an ActiveX control project. It does not happen in an ActiveX DLL project.

APPLIES TO
  • Microsoft Visual Basic 6.0 Learning Edition
  • Microsoft Visual Basic 6.0 Professional Edition
  • Microsoft Visual Basic 6.0 Enterprise Edition
Keywords: 
kbbug kbfix kbctrlcreate kbvs600sp3fix KB221225
 

Article Translations