P
Paul Ponzelli
We're using the MouseMove event (below) to highlight command labels in a
form when the user moves the mouse over them. It works fine in Access 2002,
but in Access 2003 the entire screen flickers dramatically when the event is
triggered. Can anyone tell me if there is a way to solve this problem?
Thanks in advance,
Paul
Private Sub Scheduling1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
On Error Resume Next
Set_Casemgr_menu
Me!Scheduling1.ForeColor = 16711680
Me!Scheduling1.SpecialEffect = 1
Me!Scheduling1.BackStyle = 1
End Sub
form when the user moves the mouse over them. It works fine in Access 2002,
but in Access 2003 the entire screen flickers dramatically when the event is
triggered. Can anyone tell me if there is a way to solve this problem?
Thanks in advance,
Paul
Private Sub Scheduling1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
On Error Resume Next
Set_Casemgr_menu
Me!Scheduling1.ForeColor = 16711680
Me!Scheduling1.SpecialEffect = 1
Me!Scheduling1.BackStyle = 1
End Sub