Asynchronous Message

  • Thread starter Thread starter Jonathan Blitz
  • Start date Start date
J

Jonathan Blitz

Is there any way to send an asynchronous message to the screen.
I wish to send the user a message with the content "Please wait ...." and
then to carry on running behind the scenes.
How can I do this?

--
Jonathan Blitz
AnyKey Limited
Israel

"When things seem bad
Don't worry and shout
Just count up the times
Things have worked themselves out."
 
Put a label with your message in the middle of the screen and set its height and
width to zero. You can also make it not visible. Then at the appropriate point
in your code, set the height and width to what you need (make it visible if not
visible).
 
you could also use the statusbar

syscmd acsyscmdsetstatus,"Please wait..."
or a progressbar
 
Hi Jonathan ,

How is the issue going on your side? Let us know if you need further
assistance.

Regards,

Michael Shao
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Back
Top