I want to call a VB application in my java code. I need set bunch of properties and run it. It looks like Runtime.exec() cannot handle this. Is there anyway to call a COM object in java? like
obj = new COM(myVBapplication);
obj->property1 = blur1;
obj->property2 = blur2;
...
obj->run;
obj = new COM(myVBapplication);
obj->property1 = blur1;
obj->property2 = blur2;
...
obj->run;