How to show Please Waiting.. message on a Win form

  • Thread starter Thread starter ad
  • Start date Start date
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...";
....
}
 
Back
Top