How to make labels/text blink!
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
8 posts
Page 1 of 1
this is very simple and i am pretty sure you can figure out the code yourself.
First make a timer then, put this code in the timer, remember you need to have a label/text.
change the timer to what ever interval.
of course you can change the colors.
First make a timer then, put this code in the timer, remember you need to have a label/text.
change the timer to what ever interval.
Code: Select all
Dim IHATE As New Random()
Dim R As Integer = IHATE.Next(0, 255)
Dim G As Integer = IHATE.Next(0, 255)
Dim B As Integer = IHATE.Next(0, 255)
Label1.ForeColor = Color.FromArgb(R, G, B)
of course you can change the colors.
------------------------------------------------------------------------------
Proprogrammer, not just a Programmer.
Proprogrammer, not just a Programmer.
This is a nice snippet, I used it two days before to help kolega in his application. I saw it on youtube, and if you took it from somewhere then please give credits.
In my old book of snippets i had since i started coding. So i dont remember where i got it from.
------------------------------------------------------------------------------
Proprogrammer, not just a Programmer.
Proprogrammer, not just a Programmer.
A suggestions is that this can also be used with form's backcolour or almost any other thing which has a forecolor or a backcolor.
thanks, lol.
------------------------------------------------------------------------------
Proprogrammer, not just a Programmer.
Proprogrammer, not just a Programmer.
You should make an algorithm of it so you can let the colors flow into eachother :P
You can use WPF for some smooth color animations!
Great snippet for everyone
Great snippet for everyone
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!
![Image]()
![Image]()
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!

8 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023