Ambiguous Name Detected Error

  • Thread starter Thread starter Melissa
  • Start date Start date
M

Melissa

I've developed a form with some command buttons that link
to reports I've developed. However none of the command
buttons are working and I'm getting the exact same error
message regardless of which command button I press. The
message reads as follows: The expression On Click you
entered as the event property setting produced the follow
error: Ambiguous name detected: Fax_List_Click. All of
the command buttons were working. I added the Fax List
button and then none of the buttons were working and they
all have the exact same error message regardless of which
button is press. How can a fix this problem?
 
Likely your Visual Basic code procedures have more than one procedure with
the same name. Look in VBA procedure for the form, and see if you have more
than one subroutine named the same.
 
Back
Top