Status indicating operation in progress

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
 
J

John Bundy

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.
 
L

Luigi

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top