Click here to Skip to main content
16,011,374 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

how to print 10 names one by one in label in windows application.

thanks
Posted
Comments
AmitGajjar 19-Dec-11 1:29am    
do you want to print it with some time delay between display ?

1 solution

Assuming these names are stored in an array called arr

foreach(string a in arr)
{
  label1.Text += a + @"; ";
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900