G
Guest
I have a label control "lblReports" in the Mousemove Event I have:
lblReports.Fontbold = True ( it works fine no problem)
I have a image control which is behind the label control "imgBground" in
the Mousemove Event I have:
If lblReports.Fontbold = True Then
lblReports.Fontbold = False
End if
It should work but it doesn't if I just use "lblReports.Fontbold = False"
that works just fine but the problem is the constant flickering of the label
which is annoying.
Why doesn't the If Statement work?
lblReports.Fontbold = True ( it works fine no problem)
I have a image control which is behind the label control "imgBground" in
the Mousemove Event I have:
If lblReports.Fontbold = True Then
lblReports.Fontbold = False
End if
It should work but it doesn't if I just use "lblReports.Fontbold = False"
that works just fine but the problem is the constant flickering of the label
which is annoying.
Why doesn't the If Statement work?