in reply to Re: call routines by exe script in exe script
in thread call routines by exe script in exe script

Which is to say you can't call a sub in a different process using conventional means, but there are other means of doing so. What the OP asked about is generically called Remote Procedure Call. And RPC isn't even required. The process can also receive more generic work requests (as opposed to function call requests) via a number of means including sockets (Inter-Process Communication).

OP, this is a huge topic. You'll need to specify a lot more information.

  • Comment on Re^2: call routines by exe script in exe script

Replies are listed 'Best First'.
Re^3: call routines by exe script in exe script
by Anonymous Monk on Mar 10, 2010 at 16:16 UTC
Re^3: call routines by exe script in exe script
by tondaqakin (Initiate) on Mar 11, 2010 at 13:58 UTC
    I am not sure if it is RPC, because I need to run my execution in this 'parent' exe environment. But I try to find how it is working. Thank you.