- ·上一篇:怎么用excel表格绘制柏拉图
- ·下一篇:excel表格怎么样绘制表格教程
excel表格怎么设置光标颜色
2025-12-10 21:13:26
1.excel表格中鼠标变色怎么设置
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
CommandButton1.BackColor = RGB(255, 0, 0)
End Sub
Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
CommandButton1.BackColor = RGB(255, 255, 255)
End Sub
