D
Davy
I am trying to display to the user of this program that something is
actually happening, and the program is not frozen. However, in the
following button click, the only message that appears is the last one.
Thanks ahead for any help!
private void button1_Click(object sender, System.EventArgs e)
{
lblStatus.Text = "Processing Images";
generateImages();
generateHTML();
lblStatus.Text = "Processing Complete";
}
actually happening, and the program is not frozen. However, in the
following button click, the only message that appears is the last one.
Thanks ahead for any help!
private void button1_Click(object sender, System.EventArgs e)
{
lblStatus.Text = "Processing Images";
generateImages();
generateHTML();
lblStatus.Text = "Processing Complete";
}