A
ad
I have a time-consuming job in button's click event;
I wnat to show a "Please waiting.. " message on the form.
I put a Label (named labResult ) on the form , and write the codes below,
but the message did not appear.
How can I do?
--------------------------------------------------------------------------------------------------
private void btnRestore_Click(object sender, EventArgs e)
{
labResult.Text = "Please Wait...";
....
}
I wnat to show a "Please waiting.. " message on the form.
I put a Label (named labResult ) on the form , and write the codes below,
but the message did not appear.
How can I do?
--------------------------------------------------------------------------------------------------
private void btnRestore_Click(object sender, EventArgs e)
{
labResult.Text = "Please Wait...";
....
}