Text Scrolling Up Effect using C#
Submitted by donbermoy on Wednesday, June 25, 2014 - 21:36.
In this tutorial, I will teach you how to create a program that has an effect of scrolling up the text.
Now, let's start this tutorial!
1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your project as Text Scroll Up Effect.
2. Next, add only one Label named Label1 and labeled it as any text. Add a timer control named Timer1 and have its interval of 30. You must design your interface like this:
3. Now put this code for your code module. This code is for Timer1_Tick and it will have to be enabled in the Form_Load:
We have created a code for Timer1 when ticking its clock or starting its time. This event occurs when the specified timer interval has elapsed and the timer is enabled. We have created an If Else statement for the top and height of the Label. If the top will be equal to the negative of its height then it will be equal on both positive location of the top and its height. Meaning to say, after it will going up and bounds with the form, it will back to its original place and will scroll up again. If not yet, then the label top position will be decremented by 1. Why it must be decremented? Because minimizing or lowering the value of the top position will have a greater top position. When it will be incremented, then it will scroll down at the bottom. Then, in loading the form, we just have enabled the time do that the first run of the program it will scroll up the text in our label.
Output:
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below.
Best Regards,
Engr. Lyndon Bermoy
IT Instructor/System Developer/Android Developer/Freelance Programmer
If you have some queries, feel free to contact the number or e-mail below.
Mobile: 09488225971
Landline: 826-9296
E-mail:[email protected]
Add and Follow me on Facebook: https://www.facebook.com/donzzsky
Visit and like my page on Facebook at: https://www.facebook.com/BermzISware
- public void Timer1_Tick(System.Object sender, System.EventArgs e)
- {
- if (Label1.Top == - Label1.Height)
- {
- Label1.Top = Label1.Height;
- }
- else
- {
- Label1.Top--;
- }
- }
- public void Form1_Load(System.Object sender, System.EventArgs e)
- {
- Timer1.Enabled = true;
- }
Add new comment
- 250 views