#include "coproc.au3"
While 1
$iPidChild = _CoProc(Default, "tishi") ; Create new Procces,
;MsgBox(0,"",$iPidChild)
Sleep(2000) ; Give some time to load new Process
_CoProcSend($iPidChild, "Something...") ; Send a Message to new process
WEnd
Func tishi($s)
MsgBox(0, "Recieved", $s)
EndFunc ;==>tishi