Status indicating operation in progress

  • Thread starter Thread starter Luigi
  • Start date Start date
L

Luigi

Hi all,
in my WinForm (C# 3.0) I have a button that when the user click on it,
several long time consuming operations occur in the database.
How can I show something the indicating work in progress, starts at button
click and finish at the end on OnClick event method?

Thanks in advance.

Luigi
 
Look into the Background Worker, you can use it to report back things like in
progess, % complete etc. This is a good way to communicate with the user
while performing other operations.
 
John Bundy said:
Look into the Background Worker, you can use it to report back things like in
progess, % complete etc. This is a good way to communicate with the user
while performing other operations.

Ok John, thank you, I'll try in this way.

Luigi
 
Back
Top