06-02-2006 09:22 AM
06-02-2006 09:28 AM
I just use a simple text message control, with appropriate fonts/colours to make it stand out. Then change the text contents/visibility as the program progresses. You could always put it on a small panel of its own, if you wanted it to be really prominent.
JR
06-02-2006 09:41 AM
JR hit the nail on the head to do what you were asking.
You can also use a progress bar via CreateProgressDialog and UpdateProgressDialog.
You could also make your own progress bars using some of the numeric controls if you want your own style.
The guage, dial, slide, tank, thermometer, et cetera could each be used.
06-02-2006 10:05 AM
As scomak pointed out, the ProgressDialog routines sound like they are close to what you are looking for. If they do not fit your application, you can find the source code for them in \toolslib\toolbox\toolbox.c. They would make a good template to modify to fit your own needs.
Good Luck.
06-05-2006 12:01 PM
@scomack wrote:
You can also use a progress bar via CreateProgressDialog and UpdateProgressDialog.
You could also make your own progress bars using some of the numeric controls if you want your own style.
The guage, dial, slide, tank, thermometer, et cetera could each be used.
I vote for this as well.. I typically use progress bars. Plus, there are multiple ways of defining / measuring the progress.
Pop ups can be tricky... Imagine if the message says: "Please Wait", and something happens and the PC hangs... The wait could be quite long... 😉
06-05-2006 12:33 PM
Thanks for all the suggestions everyone. I think the progress bar would suit me best in this application. I'll try it first and then look at text panels when I get some time. Thanks again for all your help.
-- Don