R
ray well
on my developing system, when my app exits, it always gets removed withing a
second from the task manager. on my clients machine, the app exits but stays
indefinitely in the task manager.
i tried every which way to kill the process, i did all of the following to
no avail:
in the module whose sub main loads the form and then starts
Application.Run(), i made an exit sub, in whichi set the app form to
Nothing, i set the apps class to nothing, t then lookd for the apps process
to kill it by
Dim proc, procs() As Process
procs = Process.GetProcessesByName("MyAppName")
For Each proc In procs
proc.Kill()
Next
and finally i ended with
Application.Exit()
and still the app lives on in the task manager and eats up resouces, though
i can't see how it is running
without hiring a hitman, how do i kill off this app?
ray
second from the task manager. on my clients machine, the app exits but stays
indefinitely in the task manager.
i tried every which way to kill the process, i did all of the following to
no avail:
in the module whose sub main loads the form and then starts
Application.Run(), i made an exit sub, in whichi set the app form to
Nothing, i set the apps class to nothing, t then lookd for the apps process
to kill it by
Dim proc, procs() As Process
procs = Process.GetProcessesByName("MyAppName")
For Each proc In procs
proc.Kill()
Next
and finally i ended with
Application.Exit()
and still the app lives on in the task manager and eats up resouces, though
i can't see how it is running
without hiring a hitman, how do i kill off this app?
ray