Hello,
I am not particularly familiar with java, but I have recently had to incorporate a java class into a VB programme, and the only way I could do it was to put the java class command in a batch file and run the batch file using the "shell" command in VB. e.g. :
make a batch file called "c:\test.bat" and enter into the file the text line
"java javaclass" where javaclass is the class you want to run.
Then in VB you can use the command :
X = shell("C:\test.bat").
This may be a little basic for you but it worked fine for me. In my program I created the batch file from within VB with all the neccessary arguments the class required.
Steven Licciardi