Shoutbox

VB 6 help - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: VB 6 help (/showthread.php?tid=53918)

VB 6 help by Dox on 12-15-2005 at 04:54 AM

I want to use VB 6 to end a process on someone's computer do you know how I could do this.


RE: VB 6 help by matty on 12-15-2005 at 05:28 AM

Are you wanting to do it by name or by window handle? And are you wanting to do it from your computer or have a program run on theirs that closes it.

If it is remotely then sorry your not going to get a lot of help because it can be used for trojans and viruses.


RE: VB 6 help by Dox on 12-15-2005 at 05:37 AM

I want it so that when a button is clicked it will end a process with a name that could either be inputted via a textbox or just be in the scripting.  e.g aim.exe

Could you help me?


RE: VB 6 help by Mike on 12-15-2005 at 05:50 AM

If the OS is Windows XP, you could do something like:

code:
Shell "taskkill.exe " & txtProcess.Text
For an other OS, I dont know... :(
RE: VB 6 help by Dox on 12-15-2005 at 05:51 AM

thanks mate


Well, any one else know?
I need a code where I can specifcy a process and when a person gets to that part of the program it end a process.
RE: VB 6 help by matty on 12-15-2005 at 07:10 AM

Ok first off don't triple post its in the forum rules. You can read them rules. Instead use the [Image: edit.gif] button to edit your posts.

Ok now are you trying to edit it on your computer or another one? Cause the code will be different for each.



Original Source found here.