| Author: Elayaraja.K 22 Sep 2008 | Member Level: Silver | Rating: Points: 4 |
only way you should kill one by one through task manager.
If you want to kill more in taks manager.just write the following code in .net
Dim parr As Process() = Process.GetProcessesByName("WINWORD.EXE") If parr.Length > 1 Then For i As Integer = 0 To parr.Length - 1 parr(i).Kill() Next end if
|
| Author: vidhyashri 22 Sep 2008 | Member Level: Silver | Rating: Points: 3 |
Elayaraja,
Thanks for your reply. I need not to kill the process. If i open 5 applications in my system,WINWORD.EXE should be only one in task manager.
|
| Author: D.Jeya kumar(JK) 22 Sep 2008 | Member Level: Diamond | Rating: Points: 3 |
Hi,
Open one application instance and from the exe we can open many application.
check the below site
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3780403&SiteID=1
Regards JK
|
| Author: vidhyashri 23 Sep 2008 | Member Level: Silver | Rating: Points: 1 |
jk, I checked the url that u send, but still it creates 5 WINWORD.EXE when i open 5 applications.
|