ACC: Compile Error After Converting Form Macros to VBA (163842)
The information in this article applies to:
- Microsoft Access for Windows 95 7.0
- Microsoft Access 97
This article was previously published under Q163842 Moderate: Requires basic macro, coding, and interoperability skills.
SYMPTOMS
After you convert macros to Visual Basic for Applications code in a form or
report by using the "Convert Macros to Visual Basic" command, you may
receive the following error message when you use the form or report.
In Microsoft Access 97
The expression <Event Name> you entered as the event property setting
produced the following error: Ambiguous name detected: <Procedure Name>.
In Microsoft Access 7.0
The expression <Event Name> you entered as the event property setting
produced an error: Compile error.
This article assumes that you are familiar with Visual Basic for
Applications and with creating Microsoft Access applications using the
programming tools provided with Microsoft Access. For more information
about Visual Basic for Applications, please refer to your version of the
"Building Applications with Microsoft Access" manual.
CAUSE
At one time, the form or report had an event procedure that was later
changed to a macro.
RESOLUTION
To prevent the error, open a form or report class module in Design view
and delete the procedure for the event whenever you replace an event
procedure with a macro.
To resolve the error, use one of the following methods to remove the
duplicate procedure in the object's class module.
Method 1
In Microsoft Access 97, if the object does not contain a mixture of Visual
Basic code and macros, you can remove the object's class module before you
convert its macros:
- Open the form or report in Design view.
- Set the object's HasModule property to No, and then save the object.
NOTE: Any Visual Basic code that the object contains is removed along
with its class module when you set the HasModule property to No.
- On the Tools menu, point to Macro, and then click "Convert Form's Macros to Visual Basic" or "Convert Report's Macros to Visual Basic."
A new class module is created for the object, and no duplicate procedure
names exist.
Method 2
In Microsoft 7.0 and 97, you can open the object's class module in Design
view and remove the duplicate procedure:
- Open the object in Design view.
- On the View menu, click Code.
- On the Debug menu (or the Run menu in version 7.0), click Compile
Loaded Modules. You will receive the error "Ambiguous name detected:
<Procedure Name>."
- Page up and down through the class module, looking for another procedure with the same name as the one that produced the compile error. When you find it, determine which procedure is the converted macro and which is the old procedure.
- Select and delete the old procedure.
REFERENCES
For more information about using the Convert Macros to Visual Basic
command, search the Help Index for converting macros or ask the
Microsoft Access 97 Office Assistant.
Modification Type: | Minor | Last Reviewed: | 10/11/2006 |
---|
Keywords: | kbprb kbProgramming KB163842 |
---|
|