show slow textbox array ie display the item and wait a few seconds to display the following c # , its gonna be like a process
roundd 1 //wait a few seconds to dislplay another line
for (i = 1; i <= r; i++)
{
label3.Text += ("round " + Convert.ToInt32(i) + Environment.NewLine);
for (j = 0; j <= n; j++)
{
if (b[j] > 0)
{
b[j] = b[j] - q;
if (b[j] <= 0)
{
b[j] = 0;
label3.Text += ("proceso " + Convert.ToInt32(j) +" completado "+ Environment.NewLine);
}
else
label3.Text += ("process" + j.ToString() + "remaining time is" + Convert.ToInt32(b[j]) + Environment.NewLine);
}