[ I don't know because I've to answer this. Maybe the last time. :( ]

http://msdn.microsoft.com/en-us/library/ms683242%28VS.85%29.aspx

"
An application-defined function used with the SetConsoleCtrlHandler function. A console process uses this function to handle control signals received by the process. When the signal is received, the system creates a new thread in the process to execute the function.
"

PROCEDURE Main()

   SetCancel(.T.)
   ? "Click [X] Not close windows"
   Wait
   RETURN

Now it's happening that you are introduced ch = HB_BREAK_FLAG in Inkey Poll, 
keyboard buffer.
Wait ends and the main process is finished so the new thread to execute the 
function is killed before it can complete their work.

--
Xavi

El 04/03/2010 18:47, Viktor Szakáts escribió:
http://msdn.microsoft.com/en-us/library/ms683242%28VS.85%29.aspx

"
Return TRUE. In this case, no other handler functions are called, and
the system displays a pop-up dialog box that asks the user whether to
terminate the process. The system also displays this dialog box if the
process does not respond within a certain time-out period (5 seconds
for CTRL_CLOSE_EVENT, and 20 seconds for CTRL_LOGOFF_EVENT or
CTRL_SHUTDOWN_EVENT).
"

What you don't understand about this part of the official documentation?

Read this:

Different behavior for Vista and later          Master Programmer
<http://msdn.microsoft.com/en-us/library/user-87514.aspx> | Edit | Show
History

It seems like for Vista and later, the system terminates the process
soon after it calls this routine.

_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to