Mousemove Event

  • Thread starter Thread starter Tru
  • Start date Start date
T

Tru

I need a reliable procedure for a mousemove event to
toggle my lable buttons Fontbold True nad False. I have
tried several methods of toggling the Fontbold True and
False when a user moves the mousepointer over a label
button. The problem I am experiencing is when the user
moves the mousepointer to fast the lbl.Fontbold stays
true. I tried using a formDetail.Mousemove Event but my
Case Select procedure does not work properly. Does
anyone have a reliable Case Select Event or Module I can
use.
 
Perhaps you could post your Case Select code, and tell us what it is doing
that it shouldn't, or what it isn't doing that it should?
 
I'm sorry I mean my ElseIf code here it is
If lblHelp.FontBold = True Then
lblHelp.Fontbold = False
ElseIf lblReports.FontBold = True Then
lblReports.FontBold = False
ElseIf lblDiary.FontBold = True Then
lblDiary.FontBold = False
Else
End If
 
You should probably post more of the routine than just that. As well, it
would help to know exactly what "does not work properly" means.
 
Back
Top