tags:

views:

44

answers:

2

hi guys i have some methods in visual basic 6.0 dll so i need to access in java 6.0 please help me

+5  A: 

The Java Native interface is your friend. But the easier way should be using the Java Native Access library. Here's an answer to a similiar question.

Andreas_D
A: 

JNI can be easily used to access any function publicly available in dll (managed or unmanaged) so that it can be used in java.

You will need to create your own interface, using Java Native Interface (JNI) and then call java function as you call them normally.

regards...

Kalpak L

Kalpak