D
David Schulberg
This code starts my application in a windows thread fine but the last
line does not kill the application that got fired up initially. How
come?
x = Thread.new do
system('app.exe')
end
sleep 10
Thread.kill(x)
David
line does not kill the application that got fired up initially. How
come?
x = Thread.new do
system('app.exe')
end
sleep 10
Thread.kill(x)
David