It must be the heat..
Can someone please tell me why when the following simple code
ends the EXE is still left in memory ??
#COMPILE EXE
#REGISTER NONE
#INCLUDE "win32api.inc"
FUNCTION PBMAIN() AS LONG
LOCAL hDlg AS LONG
LOCAL Result AS LONG
DIALOG NEW 0,"Test Window",,,400,300,%WS_SysMenu,0 TO hDlg
DIALOG SHOW MODELESS hDlg, TO Result
DO
DIALOG DOEVENTS
LOOP
END FUNCTION
Can someone please tell me why when the following simple code
ends the EXE is still left in memory ??
#COMPILE EXE
#REGISTER NONE
#INCLUDE "win32api.inc"
FUNCTION PBMAIN() AS LONG
LOCAL hDlg AS LONG
LOCAL Result AS LONG
DIALOG NEW 0,"Test Window",,,400,300,%WS_SysMenu,0 TO hDlg
DIALOG SHOW MODELESS hDlg, TO Result
DO
DIALOG DOEVENTS
LOOP
END FUNCTION
Comment