I've created a DLL with IKVM from the following simple Java code:
Can anybody help me with the specific code in VBA Excel to call this DLL to the spreadsheet and it return in a cell the value of "Soma"?![]()
public class Soma { public static void main(String args[]) { double x,y; x = 2; y = 3.0; y = y + x; System.out.println("soma = " + (x+y)); } }
Bookmarks