now program show Messagebox and wait user decision.
How make, that program don’t wait?
Show Messagebox, ant keep going.
(I do not need a user action. I just need to show text)
Or maybe a better option than to report the information to a new window?
I hope to understand my problem.
quick and easy way: use a
BackgroundWorkerto host your long running job and use the worker’s events to pop up messages in the UI thread.edit: might want to display the messages in the form of a message log.