Custom Busy Window.
-
Gud day everyone.. There are only two common suggestions in the internet on how to inform the users when program is busy : 1. backgroundworker 2.threading... i want to make my own modal window with animated GIF in it. said window will display during processing and it will stop after the process. how will i do it? can anyone give me a sample.... thanks in advance.
xxx
-
Gud day everyone.. There are only two common suggestions in the internet on how to inform the users when program is busy : 1. backgroundworker 2.threading... i want to make my own modal window with animated GIF in it. said window will display during processing and it will stop after the process. how will i do it? can anyone give me a sample.... thanks in advance.
xxx
-
Gud day everyone.. There are only two common suggestions in the internet on how to inform the users when program is busy : 1. backgroundworker 2.threading... i want to make my own modal window with animated GIF in it. said window will display during processing and it will stop after the process. how will i do it? can anyone give me a sample.... thanks in advance.
xxx
I have done something similar, which was a borderless progress form with an animated gif, and a background worker on it. You just hook up to the
DoWork
andRunWorkerCompleted
events as normal. Having said that, although it worked fine in a small scale application, for a larger app I ended up writing my own threading code. Ideally the window should be modeless. But then you have to intercept all mouse and keyboard messages to ensure the end user cannot click elsewhere.If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
I have done something similar, which was a borderless progress form with an animated gif, and a background worker on it. You just hook up to the
DoWork
andRunWorkerCompleted
events as normal. Having said that, although it worked fine in a small scale application, for a larger app I ended up writing my own threading code. Ideally the window should be modeless. But then you have to intercept all mouse and keyboard messages to ensure the end user cannot click elsewhere.If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
The window should be modal to prevent the user from making any action while it is processing... I tried to making a separate window with animated GIf and called it under another thread but it still doesnt work.. can you give me a sample how will i do it.. thanks in advance..
xxx
-
The window should be modal to prevent the user from making any action while it is processing... I tried to making a separate window with animated GIf and called it under another thread but it still doesnt work.. can you give me a sample how will i do it.. thanks in advance..
xxx
Could be a largish code chunk. I'll see if I can slim it down. The key though is that the window is launched on the main GUI thread, but performs it's work on a secondary thread.
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
The window should be modal to prevent the user from making any action while it is processing... I tried to making a separate window with animated GIf and called it under another thread but it still doesnt work.. can you give me a sample how will i do it.. thanks in advance..
xxx
Email on it's way to you. It was far to big to post here. Maybe one day I will write it up as an article.
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
Gud day everyone.. There are only two common suggestions in the internet on how to inform the users when program is busy : 1. backgroundworker 2.threading... i want to make my own modal window with animated GIF in it. said window will display during processing and it will stop after the process. how will i do it? can anyone give me a sample.... thanks in advance.
xxx
See this... A simple wait window[^]
Everything makes sense in someone's mind
-
The window should be modal to prevent the user from making any action while it is processing... I tried to making a separate window with animated GIf and called it under another thread but it still doesnt work.. can you give me a sample how will i do it.. thanks in advance..
xxx
Got a much better Wait Window available now. Posting the code to you made me think about what I had and I have vastly improved on the code now. I have posted it as an Article A simple wait window[^].
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
-
Got a much better Wait Window available now. Posting the code to you made me think about what I had and I have vastly improved on the code now. I have posted it as an Article A simple wait window[^].
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]
You posted a lot,,, it really helps and I want to thank you for this effort... thank you again
xxx
-
See this... A simple wait window[^]
Everything makes sense in someone's mind
Thank you very much for the link,,, i havent tried it yet but i really appreciate the efforts you mad... thank you again.
xxx
-
You posted a lot,,, it really helps and I want to thank you for this effort... thank you again
xxx
Your welcome. It helped me to clean up my code as well.
If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles] [My Website]