Re: MessageBox alternative



Hi!

Surely you should add a Label to the form, say lblInfoText.

Then in the onClick event of each button you could add:

Me!lblInfoText.Caption = Me!btnClickWasClicked.Name

which will give you the name you has given the button.

Or if you want a special text to appear you must give the string in
each event like:

Me!lblInfoText.Caption = "Hi! I was clicked by ....."

Me.Name :-)

.