Colleagues,
I'm working on a project where a "Manager" program (will be EXE) calls multiple copies of the "Worker" program (also EXEs) with parameters.
The template in the Manager.EXE is this:
Where the Worker.EXE program picks up these parameters?
My guess it's in Main(), e.g.
The question is: shall it be as it's shown above, or
Please advise.
TIA!
Regards,
Ilya
I'm working on a project where a "Manager" program (will be EXE) calls multiple copies of the "Worker" program (also EXEs) with parameters.
The template in the Manager.EXE is this:
Code:
Process.Start(lcWorkerEXE, lcParmsString)
Where the Worker.EXE program picks up these parameters?
My guess it's in Main(), e.g.
Code:
Sub Main(Parm1, Parm2, ..., Parm6)
The question is: shall it be as it's shown above, or
Code:
Sub Main(ByVal Parm1 As String, ByVal Parm2 As String, ..., ByVal Parm6 As String)
Please advise.
TIA!
Regards,
Ilya