Michel,
thanks for your response. It would be too good if it was that easy, but
this
works only if you End Task (kill application) in the Application tab, but
not
if you End Process (kill process) in the Processes tab of Task Manager.
There have obviously been few significant upgrades between VS.NET 2002 and
VS.NET 2005. I am still maintaining my application in VS.NET 2002 where
e.CloseReason does not exist yet, but have installed VS.NET 2005 on other
machine so I could test your suggestion.
We will soon distribute .NET framework 2.0 company wide, so I will finaly
be
able to migrate my windows application to VS.NET 2005 version in which I
am
able to test for e.CloseReason.TaskManagerClosing, which is exactly what I
needed, BUT ONLY if it worked in the Processes tab of Task Manager.
I am very confused that this new powerfull feature does not work in the
Processes tab. Any reason for that? Or can I make it work if the process
is
killed (End Process). Or is there any other way to get notified when the
process is killed from the Task Manager - Processes tab?
Thanks,
Strah@langan
Michel Posseth said:
well you should be able to catch this in the form`s closing event
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As
System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
e.CloseReason.TaskManagerClosing
End Sub
regards
Michel Posseth [MCP]
"Strah" <
[email protected]> schreef in bericht
Is there a way to catch the event of terminating the application from
the
the
processes tab in task manager?
I have created windows app, and if a user termintates the app in the
task
manager, I'd like to be notified. I tried few combinations of Close,
Closing,
Application.Exit method, ApplicationExit Event, etc, but nothing seems
to
be
working.
Thanks in advance
Strah@Langan