devxlogo

Create C++ DLLs to be Used in VB Apps

Some C++ programmers develop Win32 API DLLs that can used from Visual Basic programs. Use the __stdcall prefix with functions exported from the C++ DLL that you want to access from VB 5.0. For example, the code in a simple Win32 DLL exporting GetMyComputerName using .def would be:

 .Def File contents::LIBRARY  DESCRIPTION "Some description"EXPORTS     GetMyComputerName        @1.CPP file contents::BOOL __stdcall GetMyComputerName(LPSTR szComputerName, LPSTR szErrorMsg){.......}

This function could be used in VB after declaring the following:

 Declare Function GetMyComputerName Lib "" (ByVal strComputerNameAs String, ByVal strErrorMsg As String) As Long

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.