Access 2000 command buttons

  • Thread starter Thread starter JKA
  • Start date Start date
J

JKA

When I use the command button wizard to create any command
like "save" or "new record", I get the following error.
"
The expression On Click you entered as the event property
setting produced the following error: Ambiguous name
detected: Save_Click.

*The expression may not result in the name of a macro, the
name of a user-defined function, or [Event Procedure].
* There may have been an error evaluating the function,
event, or macro."

Please help, I do not know visual basic, only DataEase for
DOS.
 
JKA said:
When I use the command button wizard to create any command
like "save" or "new record", I get the following error.
"
The expression On Click you entered as the event property
setting produced the following error: Ambiguous name
detected: Save_Click.

*The expression may not result in the name of a macro, the
name of a user-defined function, or [Event Procedure].
* There may have been an error evaluating the function,
event, or macro."

Please help, I do not know visual basic, only DataEase for
DOS.

It means the module behind your form has two (or more) procedures that are
named "Save_Click". You need to find the duplicates and delete all but
one.
 
Back
Top