how i can get return value from compiled "function"???
if i run not compiled script then i can use "function" return value in other script
if i compile and run---i get nothing...
how to make my compiled script to redirect function return value to stdout???
sorry for my english...
for example...
Global $mySusRet
$i_PID=1238 ;for exemple
ae_suspend_process($i_PID)
func ae_suspend_process($i_PID = -1)
If $i_PID <> -1 Then
Dim $s_TempFile
Dim $aRecords
$s_TempFile = _TempFile()
$foo=Run(@ComSpec & " /c " & 'pssuspend' & ' ' & $i_PID ,"",@SW_HIDE,$STDOUT_CHILD)
While 1
$line = StdoutRead($foo)
If @error = -1 Then ExitLoop
FileWrite($s_TempFile,$line)
Wend
_FileReadToArray($s_TempFile,$aRecords)
FileDelete($s_TempFile)
if $aRecords[7]="Process does not exist." Then
$mySusRet=$aRecords[7]
Else
$mySusRet=$aRecords[6]
EndIf
EndIf
Return $mySusRet
EndFunc ;==>_suspend_process
i get the result in "var"-> $mySusRet <- and can use this "var" in other scripts
but if i run a compiled version of this cod i get nothing on stdout of this executable...
helpppppp....