Is there a way to display a form for about 5 seconds and then return to the program? What I am basically trying to do is to display a background form and then display another form on top of it (I do not wish to hide the background form until the user triggers an event on the second form). I therefore want to invoke the second from within my background form without closing or hiding the background form.
I did this once with a Visual Basic form as follows:
System.Threading.Thread.CurrentThread.Sleep(5000)
But I do not know if there is anything remotely similar in Managed COBOL.



