How do I kill a messagebox with a timeout ?
resolution:
It appears I'll have to build my own then ....
Printable View
How do I kill a messagebox with a timeout ?
resolution:
It appears I'll have to build my own then ....
Someone else might have a direct answer, but as a messagebox is just a modal form, you could design your own and after the required message has been displayed use something likeQuote:
Originally posted by microfast
How do I kill a messagebox with a timeout ?
VB Code:
Obj.Update (Where OBJ is the name of the control displayng the message) Threading.Thread.Sleep(5000)
to give a 5 second delay.
(With acknowledgements to Pirate)
Message boxes interupt the process of your forms, you'd need to create you're on custom one for an easy solution.