Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to call a vb cls file in java

Is it possible to call a vb6 class file like (example.cls) in java by any means? if its possible can you suggest how it can be implemented like where should i start looking.

like image 556
Arun Michael Avatar asked Nov 27 '18 05:11

Arun Michael


1 Answers

No you can't call a vb class directly from java. you need to do the following

  • Compile the VB6 class into dll file in VB6
  • Then register the dll file in your system
  • Call the dll file using java native
like image 51
Minato Avatar answered Nov 15 '22 20:11

Minato