Hi
I am new to c# programming and am trying to make a label go across the screen and then do it again, I have got it to move from the right side to the left side but then i get stuck.
this is the code that i have so far
label.left -= 5;
if (label.left <= -width)
{
Label.left = width;
}
if anyone can help me that would be great
thank you for you stime.
