Simple but Confusing

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
The FontBold value is 1 for True, 0 for False. When you set the value of True
the FontBold turn to 1.

So…. Your if statement doesn’t work.
 
Now we rollin!
--
Thanx Again!


AccessVandal via AccessMonster.com said:
The FontBold value is 1 for True, 0 for False. When you set the value of True
the FontBold turn to 1.

So…. Your if statement doesn’t work.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top