If i am using following command in java:
Process ps = Runtime.getRuntime().exec("some .exe file of VB");
How do I know that the particular .exe has done its job eg: it executed successfully.
How do i know that it has some error or just completed half task in java. How should I design my program in java to know or Is there any way to tell java from VB.
Any help is appreciated.