I have .jar to execute from windows from, so far I was able to lunch the program from my window form, but when I put information in my java file I get no result the java file does nothing. If I go manualy double click and execute the .jar file and put the information I get the resul.
here is my code to execute java inside windows form :
 Process p = Process.Start(@"C:\convert\Convert.jar");
            Thread.Sleep(500);
            p.WaitForInputIdle();
            SetParent(p.MainWindowHandle, this.Handle);
.jar file is for to convert .csv to .txt with special data.