george

george

  • NA
  • 23
  • 45.5k

c# beginer

Aug 24 2008 8:59 PM

sorry for my bad english

hi a have start to use c# and il try to experimen with this language

 

in this part of code i have a label scrolling text and its works but i wand to reverce the scrolling? or to choose left to right or right to left  but i cand find how :(, please can someone help me?

 

System.Text.StringBuilder sb = new System.Text.StringBuilder("hello world");

private void timer1_Tick(object sender, EventArgs e)

{

char ch = sb[sb.Length - 1];

sb.Remove(sb.Length - 1, 1);

sb.Insert(0, ch);

label3.Text = sb.ToString();

label3.Refresh();

}

 


Answers (1)