|
-
Jun 28th, 2000, 12:56 AM
#1
Thread Starter
Addicted Member
A few weeks ago, I was trying to launch a server side application from ASP and Mark Sreeves posted the following code, which works great:
Code:
Option Explicit
Public Function RunExe(ByVal Filename As String) As Long
On Error Resume Next
Shell Filename
'return the error if any
RunExe = Err.Number
End Function
How would I then kill this application? Does
exist? If not, is there a better way?
Thanks!
dvst8
Secret to long life:
Keep breathing as long as possible.
-
Jun 28th, 2000, 01:53 AM
#2
Hyperactive Member
Kill does exist but be warned misused can cause some fun things.
-
Jun 28th, 2000, 03:21 AM
#3
Frenzied Member
the kill command deletes a file
it's not for killing a process
-
Jun 28th, 2000, 03:23 AM
#4
Hyperactive Member
Can you
kill System
??
Someone in the forums was asking that once...
Would that kill your os?
-
Jun 28th, 2000, 03:27 AM
#5
Thread Starter
Addicted Member
it's not for killing a process
then is there a way to do it?
tx
/d8
Secret to long life:
Keep breathing as long as possible.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|