I have created an ADD-On for the RDM software.
Currently i am having the following problem.
I need to trace the exit of the process i am starting in the ConnectExternal function.. (ProcessExitedEvent).
This is because i need to do some stuff after the process has exited.
externalProcess2.Exited += new EventHandler(externalProcess_Exited);
externalProcess2.Start();
The Event is triggered when i am closing the opened process manually. That works.
But if i use the "Close Session" button in RDM , nothing is triggered.. even though the process is closed.
Is there any possibility to do some own stuff in the Add-On when "close session" is clicked? I am not finding any information in the samples and sdk documentation..
Thank you in advance!
Currently i am having the following problem.
I need to trace the exit of the process i am starting in the ConnectExternal function.. (ProcessExitedEvent).
This is because i need to do some stuff after the process has exited.
externalProcess2.Exited += new EventHandler(externalProcess_Exited);
externalProcess2.Start();
The Event is triggered when i am closing the opened process manually. That works.
But if i use the "Close Session" button in RDM , nothing is triggered.. even though the process is closed.
Is there any possibility to do some own stuff in the Add-On when "close session" is clicked? I am not finding any information in the samples and sdk documentation..
Thank you in advance!