My VB.NET WinForms program (parent) calls another VB.NET Console program (child) with Process.Start(). The child application runs quickly and I would like a status message returned to the parent. How can I send a string from the child to parent?
Is there some built-in way because of the parent-child relationship or must I use some other interface like sockets?
Just to add some code to my other comment, imagine the following simple child program:
And here’s the parent: