Question Can vb.net use the vb6.0 library?

kinki_2046

Member
Joined
Jun 8, 2011
Messages
23
Programming Experience
Beginner
Hi all,

can vb.net can use the vb6.0 library?

I have a RFID writter program that I get it from the RFID supplier.
Which is develop by vb6.0. And I try to check it out, they are use the dll.
Then, izzit possible vb.net can use the vb6.0?

I need to develop the a system that is need the RFID writter in the vb.net.
But I just a beginner. Can somebody help me convert to vb.net with my attachment?

Sorry for the application is in chinese character.

Thanks.

View attachment CadaUSB.zip
 
VB.NET can reference COM components and ActiveX controls created with VB6. You reference them in exactly the same way as you do a .NET assembly. The system will create an Interop library that sits between your application and the unmanaged library. You must deploy three components (application, Interop library and unmanaged library) for your app to work. The COM component or ActiveX control must also be registered in the usual way.
 
Back
Top