Windows message
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, What windows message will be send to the application while closing the applcation[End Process] via task manager? Thanks,
If you use the "End Task" button from the "Applications" tab the
WM_CLOSE
message is used. If you use the "End Process" button from the "Processes" tab it's closed forcefully and receives no notification.Steve
-
If you use the "End Task" button from the "Applications" tab the
WM_CLOSE
message is used. If you use the "End Process" button from the "Processes" tab it's closed forcefully and receives no notification.Steve