Colleagues,
I have "Manager" EXE which calls "Worker" EXE.
That latter has to return a value to the calling "Manager" (say, numeric success code, or just Boolean one).
Will (in the "Worker")
do the trick?
Regards,
Ilya
I have "Manager" EXE which calls "Worker" EXE.
That latter has to return a value to the calling "Manager" (say, numeric success code, or just Boolean one).
Will (in the "Worker")
Code:
Sub Main() As Integer
Dim lnSuccess As Integer = 0 ' Full success, initially
...
Return lnSuccess
End
End Sub
do the trick?
Regards,
Ilya