I ran across something recently for enhancing a label when
the label is used as a command button. I wish I could
remember where I saw this, because I would like to give
credit for the idea. Call the label cmdDoSomething, set
the special effect to raised, then set the Mouse Down
event to:
Me.cmdDoSomething.SpecialEffect = 2
In the Mouse Up event:
Me.cmdDoSomething.SpecialEffect = 1
Similarly, effects can be applied to pictures such as the
command button graphics I mentioned in the previous post.
I am starting to use these techniques as an alternative to
attaching pictures to standard command buttons, and have
found the approach to be very satisfactory when all I need
is a Click event.
In addition to Lebans site (from my previous post in this
thread), another approach can be found at:
http://www.peterssoftware.com/clrbtn.htm