I'm doing a small project in college and my project guide only knows visual basic 6. He is insisting on using only VB6. I'm very good in java and want to use java for the core functionality and VB6 only for the UI.
J-Integra may does this but it is not free, while JCom (sourceforge) seems to be for accessing COM objects like VB6 from Java and not the other way around. Also somewhere I red that using javareg.exe, one can register java classes as COM and access as below, but I couldn't find javareg.exe anywhere.
Java class:
public class MyTest
{
public int myfunction(int value1, int value2)
{
return value1 + value2;
}
}
VB
Private Sub Command1_Click()
Set x = CreateObject("MyTest")
MsgBox x.myfunction(500, 500)
End Sub
Anyone know how I can do as above?