BUG: Procedure Declaration Does Not Match Description of Event
ID: Q190079
|
The information in this article applies to:
-
Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 6.0
SYMPTOMS
Implementing an interface for a class that has broken compatibility results
in the following error during compile time:
Compile Error: Procedure declaration does not match description of event
or procedure having the same name
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. We are researching this bug and will post
new information here in the Microsoft Knowledge Base as it becomes
available.
MORE INFORMATIONSteps to Reproduce Behavior
- Create a new ActiveX DLL project in Visual Basic, Project1.
- Select Add Project from the File menu and add a second ActiveX DLL
project, Project2.
- Add the following code to Project2's default class (Class1):
Public Test As Long
- Select Make Project2.dll from the File menu to compile Project2.DLL.
- Select Project2 Properties from the Project menu, and choose the
Component tab in the dialog box.
- In the Version Compatibility frame, select Binary Compatibility.
The text field below the option should be pointing to the DLL that was
just compiled (Project2.DLL).
- Modify the code in Class1 of Project2 to:
Public Test as Integer
- Press the F5 key to run the module. A dialog box should appear twice
warning about breaking Binary Compatibility. Choose "Preserve
Compatibility" each time.
- Another dialog will appear asking how to instantiate the DLL. Choose
"Wait For Components To Be Created."
- Stop the DLL from running by pressing the "Stop" button on the Visual
Basic design environment toolbar.
- Switch to Project1 DLL, select References from the Project menu and add
a reference to Project 2.
- Add the following code to Project1's default class (Class1):
Implements Project2.Class1
- Under the object drop-down box (upper-left ComboBox in Class1's code
window), select Class1. A "Get" property for Class1_Test should be
inserted into the Class1 code window.
- Under the property drop-down box (upper-right ComboBox in Class1's code
window), select "Test [PropertyLet] ." A "Let" property stub for
Class1_Test should be inserted into the Class1 code window.
- Select Make Project1.dll from the File menu to attempt to compile
Project1.DLL. Note that the above mentioned error appears.
Additional query words:
kbDSupport kbVBp600bug kbCompiler kbdss kbVBp
Keywords : kbGrpVB
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbbug
|