News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Displaying a message box with timeout

Started by Vortex, September 09, 2008, 07:12:01 PM

Previous topic - Next topic

Vortex

Another TimerProc :

TimerProc PROC hWnd:DWORD,uMsg:DWORD,idEvent:DWORD,dwTime:DWORD

    invoke  KillTimer,hWnd,ID_TIMER
    invoke  SendMessage,hWnd,WM_CLOSE,0,0
    ret

TimerProc ENDP