I need help with this code, My purpose is to show multiple Message one after one, this one is working fine but I need several messages to be shown one after one, I tryied different Method but allways showing Message1 and loop. Any hints guys. Thank you in advance.
private void TmrScroll_Tick(object sender, EventArgs e)
{
String T1 = "Scorolling Message1";
String T2 = "Scorolling Message2";
LblScroll.Location = new Point(LblScroll.Location.X + 5, LblScroll.Location.Y);
if (LblScroll.Location.X > this.Width)
{
LblScroll.Location = new Point(0 - LblScroll.Width, LblScroll.Location.Y);
LblScroll.Text = T1;/
}