PatrickIRL
Programmer
- Jun 25, 2003
- 383
Hi,
I've developed an ActiveX dll in VB and now messing around with java trying to access it. So far my code looks like this ...
Thing is, if I try to decalre an instance of the dll by
CalcEngine c = new CalcEngine(); it gives all sorts of trouble. Is this possible?? If so how do I go about it??
Thanks in advance,
Patrick
I've developed an ActiveX dll in VB and now messing around with java trying to access it. So far my code looks like this ...
Code:
public class Test{
public static void main(String[] args){
Test t = new Test();
}
static{
System.loadLibrary("CalcEngine");
}
}
Thing is, if I try to decalre an instance of the dll by
CalcEngine c = new CalcEngine(); it gives all sorts of trouble. Is this possible?? If so how do I go about it??
Thanks in advance,
Patrick