TadyB---
I get around it by using labels and the following code found on UtterAccess.com, posted by Grove:
I set the Special Effect property to raised. Then with the MouseDown and MouseUp events I add the following Code:
------------------------------------------------------------
Private Sub Label8_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label8.SpecialEffect = 2
Label8.BackStyle = 0
End Sub
------------------------------------------------------------
Private Sub Label8_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label8.SpecialEffect = 1
Label8.BackStyle = 1
End Sub
--------------------------------------------------------------------------------
This way I can color it any way I want.
-Dave-