Text Scrolling Up Effect using C#

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: design 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:
  1. public void Timer1_Tick(System.Object sender, System.EventArgs e)
  2.                 {
  3.                         if (Label1.Top == - Label1.Height)
  4.                         {
  5.                                 Label1.Top = Label1.Height;
  6.                         }
  7.                         else
  8.                         {
  9.                                 Label1.Top--;
  10.                         }
  11.                 }
  12.                
  13.                 public void Form1_Load(System.Object sender, System.EventArgs e)
  14.                 {
  15.                         Timer1.Enabled = true;
  16.                 }
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: 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

Add new comment