
06-08-2004, 05:43 AM
|
 |
Martian In Disguise
Retired Moderator * Guru *
|
|
Join Date: May 2003
Location: Minneapolis, MN
Posts: 9,566
|
|
Use the MouseMove event of the form and any "near-by" controls to set the FontBold property of the control to False.
Code:
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.Command1.FontBold = True
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.Command1.FontBold = False
End Sub
|
__________________
The only stupid question is the one that goes un-asked.
|