[Gambas-user] Exec

Rob sourceforge-raindog2 at ...94...
Fri Jun 6 18:45:06 CEST 2003


On Friday 06 June 2003 15:02, Ken Schrock wrote:
> I need
> pid = Exec "whatever"
> Somewhere else
> kill(pid)
> Envisioned?

Well, if you kill(pid) it'll try to delete a file named (the number of the 
pid).  It's still BASIC, remember ;)

Tried something like

dim px as Process
SHELL "whatever" AS px
(and then later)
px.Kill

maybe?

(In answering this mail I discovered a few missing things in the wiki, like, 
oh, all of the properties/methods for each class under the component section, 
there are a bunch of orphaned * and _ in most of the converted pages (they're 
equivalent to the <b> and <i> html tags) and EXEC is missing from the 
statements by category list.... well, guess there's more work to be done ;) )

Rob





More information about the User mailing list