Page 1 of 1

VB 2008 Tutorial - How to make Blinking Text Effect

Posted: Tue Dec 29, 2009 9:04 am
by tvs praveen
Insert 1 TextBox, 1 Label and 2 Timer

Change Timer1 Enabled into True, And change Interval into 200

Change Timer2 Enabled into True

Insert this code under Public Class Form1
Code: Select all
Dim TXT As String 
Double click and insert this code into Timer1
Code: Select all
Label1.Text = TXT
Label1.Visible = Not (Label1.Visible)
Insert this code into Timer2
Code: Select all
Label1.text = TextBox1.Text
Now debug and type anything on TextBox it will appear on Text with Blinking Effect ! ! !


Happy New Year 2010 wahooo; wahooo; cooll;

(This post is posted 2 days before 2010 new year)


*******************Thanks for reading my tutorial, I think this Tutorial will be most helpful to you!*******************

If you want any custom tutorial for you or you need any help in VS.NET, VB.NET, Software Coding, Designing and much more any help in Computer stuffs just ask me

Mostly i will help everyone in coding and design stuffs in on Computer

- Best regards hehaho;

- Tvs Praveen wahooo;

- Thanks CodeNStuff! for this amazing Website cooll;

Re: VB 2008 Tutorial - How to make Blinking Text Effect

Posted: Wed Jan 06, 2010 4:56 pm
by Usman55
Nice but you should make the code more better and easier...
Anyways... it does the work, can you add and option that you can save the blinking effects as Bitmap? That would be great!
Thanks!

Re: VB 2008 Tutorial - How to make Blinking Text Effect

Posted: Wed Jan 06, 2010 7:59 pm
by tvs praveen
Usman55 wrote:
Nice but you should make the code more better and easier...
Anyways... it does the work, can you add and option that you can save the blinking effects as Bitmap? That would be great!
Thanks!
Yes, I will try to make it ;)