Hi, I was wondering if someone could tell me the best way to call a Visual Basic program from JAVA. I have a few VB applications that I want to run from a JAVA application that I'm building.
Thanks!
Hi, I was wondering if someone could tell me the best way to call a Visual Basic program from JAVA. I have a few VB applications that I want to run from a JAVA application that I'm building.
Thanks!
You can use ProcessBuilder.start() or the older Runtime.exec() to launch processes. This information is available in the Java SE docs.