
If you open adobe photo shop, one small window is suddenly open. In that you can saw the running text Initilizing… Reading Fonts.. like that.
I like to do this type of running text in my project also..
I try to in for loop. but it not show!.
for (int j = 1; j <= 3; j++)
{
label1.Text = "Please Wait.";
label1.Text = "Please Wait..";
label1.Text = "Please Wait...";
label1.Text = "Please Wait.";
label1.Text = "Please Wait..";
label1.Text = "Please Wait...";
label1.Text = "Please Wait.";
label1.Text = "Please Wait..";
label1.Text = "Please Wait...";
label1.Text = "Please Wait.";
label1.Text = "Please Wait..";
label1.Text = "Please Wait...";
label1.Text = "Please Wait.";
label1.Text = "Please Wait..";
label1.Text = "Please Wait...";
}
pls give a suggestion.,
you need to add intervals in between, otherwise you won’t see the text except the last one.
You’ll also need to update the GUI as in Barfieldmv’s comments below, so something like this: