S
Steven Blair
Hi,
I have a function made up of several processes. After each process I
want to write the status of the provess out to a Listbox:
void MyFunc()
{
if( DoSomething1() )
{
lsOutput.Items.Add("Success 1");
}
if( DoSomething2() )
{
lsOutput.Items.Add("Success 2");
}
//And so on
}
The problem is, none of the details are displayed to the Listbox until
all the processing is finished.
Can anyone help me out?
Regards,
Steven
I have a function made up of several processes. After each process I
want to write the status of the provess out to a Listbox:
void MyFunc()
{
if( DoSomething1() )
{
lsOutput.Items.Add("Success 1");
}
if( DoSomething2() )
{
lsOutput.Items.Add("Success 2");
}
//And so on
}
The problem is, none of the details are displayed to the Listbox until
all the processing is finished.
Can anyone help me out?
Regards,
Steven