作者: hjb016 时间: 2011-5-19 17:36
在form的MouseMove事件里写上控件.forecolor=vbblack
或者在标签临近的控件上,对mousemove事件上写上 控件.forecolor=vbblack 作者: 123xiaoniu 时间: 2011-5-19 17:56
Private Sub Label0_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.Label0.ForeColor = RGB(255, 0, 0)
End Sub