
Re: Wait Window TimeOut X seconds
Just start a timer and when you get a WM_TIMER message, kill the timer, or whatever you need to do and then fire this event off with the message box, OR insert a user message into the event queue, and let the winproc dispatch the message to your event handler. But, bottom line, just use a normal windows timer and have it generate a WM_TIMER event in 2 seconds. Simple, windows stuff.
http://msdn.microsoft.com/en-us/library ... 85%29.aspxKind of thing is all you need.
Read a good windows book cover to cover like Petzolds or similar.
Andre'