Receiving error message

M

mabyn

I don't think this posted. My apologies if it did.

Error Message;
The expression on Activate you entered as the Event Property produced the
following error: Ambiguous name detected Lineup_Click.

I don't know what it means nor how to correct it. I am trying to create a
drop down box on a form. The box has several words to choose between. I named
my table with the words "Lineup". I then tried to put a command box on
another form (Attendees) so the Lineup box would open there.

After doing so I get this error. Can anyone help straighten me out?
 
D

Douglas J. Steele

The error means that you have more than one routine in your VBA named
Lineup_Click.

Go into the VB Editor and do a search for Lineup_Click in the entire
database. Delete all but one of them.
 
Top