I want to open a window that will display some text like "Validating input" and hold it open until a method is finished. I can't do this with messagebox. Any ideas guys?
feedback
|
|
Unless I've misunderstood this sounds a tad cruel to the user, but you could do something like this: A
Your If you do this and your modal dialog isn't performing the validation then you should be aware that you will need to perform the validation on a background thread, as the UI thread will be tied up displaying the modal dialog. | ||||
|
feedback
|
|
You can create a basic form, and do something like this.
| |||||||||||||
feedback
|
|
Depends on your app context you can pick up example of @Jethro, or Create a your There is a lot other stuff that you can do, but depends on yuor concrete context which can not be very clear from the post. Hope this helps. Regards. | |||
|
feedback
|
|
I recommend disabling the parts of the screen you don't want the user to interact with during the validation, display a progress bar and some text (in a label, statusbar, whatever) that says "Validating. Please wait..." and then use a BackgroundWorker thread to perform the actual validation. Tap into the BackgroundWorker's RunWorkerCompleted event to hide the progress bar and display a new message that says "Validation Complete" or something similar. http://www.albahari.com/threading/part3.aspx#_BackgroundWorker Edit: I saw your comment about possibly requiring user input during the process, so this solution may not work for you. BackgroundWorker is good for a long process not requiring user input, but where you don't want the GUI to freeze up. It supports reporting progress during the long run too. | ||||
|
feedback
|