J
Jerry
I am looping through a number of files and I want to display the current
file name that is being processed to the form in a lable.
this.lblProcessing.Text = "Processing file: " +
this.lBxFiles.SelectedItems[ i ].ToString();
My broblem is that nothing is being display. I can do a
Console.WriteLine( this.lblProcessing.Text );
and it writes the correct file name.
Why is
this.lblProcessing.Text = "Processing file: " +
this.lBxFiles.SelectedItems[ i ].ToString();
not updating?
Is there a better way to do this?
Thanks,
Jerry
file name that is being processed to the form in a lable.
this.lblProcessing.Text = "Processing file: " +
this.lBxFiles.SelectedItems[ i ].ToString();
My broblem is that nothing is being display. I can do a
Console.WriteLine( this.lblProcessing.Text );
and it writes the correct file name.
Why is
this.lblProcessing.Text = "Processing file: " +
this.lBxFiles.SelectedItems[ i ].ToString();
not updating?
Is there a better way to do this?
Thanks,
Jerry