View Single Post
Old 02-11-2012   #28
<GEEK>
Member
 
<GEEK>'s Avatar
 
Join Date: Jul 2011
Posts: 359
Likes: 215
Liked 303 Times in 148 Posts
Mentioned: 28 Post(s)
Tagged: 0 Thread(s)
Send a message via AIM to <GEEK>
Originally Posted by TizzyT View Post
LOL yeah if you look at the app your name is in it lol, I gave credit where it was due and you helped with the hex part remember so I put your name on the app .
You should use double buffering when updating the label (status) on the bottom of the first form when a user hovers over one of the 3 icons.

Me.SetStyle(ControlStyles.UserPaint, True)
Me.SetStyle(ControlStyles.AllPaintingInWmPaint, True)
Me.SetStyle(ControlStyles.OptimizedDoubleBuffer, True)

Just toss that in your form load event. It should reduce the flicker when painting the label (or whatever control you used for the status). Or put the label in a picture box, since that control is doubled buffered automatically.

Also, thanks for the mention in the app. If you want to reduce the size of the executable, you can remove me from the About form, lol. I know I gave you a hand, that is all that matters to me, no other credit is needed. Just saying...

Last edited by <GEEK>; 02-11-2012 at 05:41 PM.
<GEEK> is offline   Reply With Quote
Likes: (1)