PDA

View Full Version : Spash message


pchris
10-06-2007, 06:44 AM
Hello,
I want to show a message while I am searching through the registry. So I want somenthing like:
Show Message ("Searching... Please wait");
repeat
search
until found or end.of.registry
Hide Message;

Is it possible?

Cristy

DavDes
10-08-2007, 11:02 PM
Hi,

You could maybe use the Debug dialog. Not very nice, but efficient.

Adam
10-09-2007, 02:08 PM
What action are you using to search the registry? Generally registry searches are quite fast.

Adam Kapilik

jassing
10-09-2007, 06:08 PM
Hello,
I want to show a message while I am searching through the registry. So I want somenthing like:
Show Message ("Searching... Please wait");
repeat
search
until found or end.of.registry
Hide Message;

Is it possible?

Cristy


use StatusDlg. actions to display your message
do your searching
use StatusDlg.Hide() to remove the message...