Including a DLL in VB

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • devyanigod
    New Member
    • Mar 2010
    • 6

    Including a DLL in VB

    We are using VB for an application. One of its part uses a Winsock for connecting an RFID UHF reader. This requires a DLL to be included. Plz help us on how to include a DLL file in our VB program
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    1. copy the DLL to system32 folder under c:/windows
    2. register the component with windows using REGSVR32.
    3. include the dll from Project---> References
    4. create object and use.

    Comment

    Working...