I'm aware that command buttons come only in a less than stylish grey, but I've also found a simple alternative of using On Mouse Down/Up events to make a label appear and operate like a button. Problem is, I would swear it worked at the end of last week (when I was prototyping), and isn't working today.
A couple of hours of playing and Googling is getting me nowhere, so any suggestions as to the problem?
Stuart
A couple of hours of playing and Googling is getting me nowhere, so any suggestions as to the problem?
Code:
Private Sub Label39_MouseDown()
Label39.SpecialEffect = 2 'Sunken
End Sub
Private Sub Label39_MouseUp()
Label39.SpecialEffect = 1 'Raised
End Sub
Stuart