Re: How to use a DLL created using VB in Java?




Roedy Green wrote:
> On 30 Sep 2005 08:50:59 -0700, "Srikanth" <sri1025@xxxxxxxxx> wrote or
> quoted :
>
> >
> >I want to know how to uses a DLL in java.... For that I created a
> >simple ActiveX dll using VB 6... The following is the code that I have
> >inside that... I named the DLL Sample.dll....
>
> the answer to that question takes a whole book. To get started see
> http://mindprod.com/jgloss/jni.html
> --
> Canadian Mind Products, Roedy Green.
> http://mindprod.com Again taking new Java programming contracts.

Be aware that using JNI requires some knowledge of C.
You could also access it using a Java / COM bridge, such as IBM's
Bridge2Java (also known as "Interface Tool").

.