Linking to an executable

  • Thread starter Thread starter Dakkar
  • Start date Start date
D

Dakkar

Is that possible to link my program to an executable
for example when i close my program the executable that i linked will
be closed too

How can i do that
 
Hi,

I am not sure if this is a good practise but you could go and kill the
process of that executable.
(
Process p = new Process ();
p.GetProcessByName ("NameOfTheProcess");
p.Kill ();
)

--
Regards,
Peter Jausovec
(http://blog.jausovec.net)
Dakkar said:
Is that possible to link my program to an executable
for example when i close my program the executable that i linked will
be closed too

How can i do that
 
Back
Top