Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visual Basic and C++...Can they be combined???

Status
Not open for further replies.

pauiel

Programmer
Jan 19, 2004
17
0
0
US
Visual Basic and C++...Can they be combined???
 
VB can call Win32 dlls, but not C++ dlls because C++ does name-mangling to allow for method overloading. Any classes you create in C++ need to have the __declspec(dllexport) attribute on them, as well as follow the other rules for creating Win32 DLLs.

Chip H.


If you want to get the best response to a question, please check out FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top