you could do this...

Code:
for (int i = 0; i < 10; i++)
{
     listBox1.Items.Add(i.ToString());
     Application.DoEvents();
}
Thats the simple answer.