Message Box in C#

  • Thread starter Thread starter Rajeev
  • Start date Start date
R

Rajeev

Hi
Could anybody tell me how to display a messagebox in C# for limited
time say 3 secs without any buttons on it.

Thanks
 
I would just pop up a form with a timer and have it self-destruct. If the
form is modal, the user will have to wait until it goes away to do anything.
Not exactly what you asked for, but it will serve the same purpose.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
 
I dont think you can diplay a messagebox with no buttons to start with.
just create a small form with a message and a timer. override showdialog()
and responde to the timer elapsed event for closing it.

Picho
 
Back
Top