Re: catch the process terminate from the task manager

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



aha well you can`t catch the termination of your app when it is killed
through end process
as the app is forcefully killed ( equivalant as your app is ended with the
END statement ( verry bad to use this ) )

It is inmediatly unloaded without running or triggering termination and
cleanup events

you can only detect this with running a watcher app or something ( query the
processes lost once in a while )
hmm when i think of this

you could create a small executable wich only task is to check if your app
is alive , your app in it`s turn will query the process list to make sure
it`s guardian is running and if not start it with a process start command .

so it is possible but not through your own program you need a second process

by the way you called this feature new ,,, i used this a lot in my VB6 days
seems MS has still some catching up todo before VS.net has everything that
VB6 already had .


regards
michel posseth




"Strah" <Strah@xxxxxxxxxxxxxxxxxxxxxxxxx> schreef in bericht
news:E660E6C1-D9CD-4C68-B545-9F64A96AF78A@xxxxxxxxxxxxxxxx
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 [MCP]" wrote:


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" <Strah@xxxxxxxxxxxxxxxxxxxxxxxxx> schreef in bericht
news:9509273D-2031-40B3-A731-E2F6417DCE50@xxxxxxxxxxxxxxxx
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





.



Relevant Pages

  • Re: How do I remove an Icon from a failed download/application?
    ... Have you first tried closing the app through Task Manager? ... opens Task Manager. ... Look under the Processes tab to find the open app. ...
    (microsoft.public.windowsxp.help_and_support)
  • Re: catch the process terminate from the task manager
    ... hmm it seems I need to create a service to guard my application... ... as the app is forcefully killed (equivalant as your app is ended with the ... if you End Process in the Processes tab of Task Manager. ...
    (microsoft.public.dotnet.languages.vb)
  • Re: Problem shutting down non-responding apps in XP SP1
    ... >because when this happens, I usually can't shut down the frozen app using ... Even Task Manager ... They're all free - and most pretty small, so they download quickly enough. ... Install and run Spybot. ...
    (microsoft.public.windowsxp.help_and_support)
  • Closed thread- Anyone seen this before?
    ... So it was technically on the desktop, which is why it showed up as an app ... I make it go away by closing the window - I get a little window that just ... 'Address' a text entry box and a little IE style 'Go' icon. ... Killing it in Task Manager kills explorer, which at least on my machine then ...
    (Incidents)
  • Re: VB making more threads than coded
    ... Background thread 1 ... started app I get 11 threads in task manager. ... I know I am making 1 thread per a CreateObject call because if I disable ...
    (microsoft.public.vb.winapi)