Any bug on compiled abort()?
- Posted by akusaya at gmx.net Jan 21, 2006
- 514 views
Hi, Is there any known bug in the compiled version of abort()? A customer has complained to me that he cannot close the program when he click the X button (using win32lib). After some correspondence, I give him a debug version that contains code like this: procedure Window1_onClose (integer self, integer event, sequence params) object td debug("close pressed, going to close...") tulisina(FILE_INA, "tProfDir", getText(tProfDir)) ... tulisina(FILE_INA, "lsPilihUser", getItem(lsPilihUser, 0)) debug("writing settings ok, aborting") abort(0) debug("SHOULD NOT SEE THIS") end procedure setHandler( Window1, w32HClose, routine_id("Window1_onClose")) Then he send me the debug output. The last lines of the output were: 042270156 close pressed, going to close... 042270156 writing settings ok, aborting but still he reported that the program never closes! Is there any solution? Thanks!