Right now I'm adding this to a process:
VB Code:
AddHandler Process.Exited, AddressOf Process_Exited Process.EnableRaisingEvents = True
Now when the process is exited (or when I exit my app), should I go ahead and use RemoveHandler to remove the event handler? or it doesnt really mather?




Reply With Quote