Hello everyone. I am looking to see if there is any possible way Visual Basic 6.0 code can run in Visual C++ 2008 Express. Any help would be very appreciated.
ben25x 12 Light Poster
Recommended Answers
Jump to PostVB can access any dll written in C language, but C++ DLLs have to have special handling, such as the DLL either has to use extern "C" to make the DLL exported functions C style functions or the VB program has to know about name mangling, and you will have …
Jump to PostYes you can write C code with that compiler, providing you named the file *.c instead of *.cpp. If the file is named *.cpp then the compiler will treat it as C++, not C.
Jump to Posti know. what i'm asking is....how do you create a regular windows .dll instead of an .exe from that compiler?
From which compiler? VC++ 2010 or VB? You can create DLLs from both of them.
In VC++ just create a DLL project and the IDE will generate all the …
Jump to PostThe same way you access any of the Microsoft win32 api functions. This is c++ forum, not vb.
All 14 Replies
Frederick2 189 Posting Whiz
ben25x 12 Light Poster
Frederick2 189 Posting Whiz
ben25x 12 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
ben25x 12 Light Poster
ben25x 12 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
ben25x 12 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
ben25x 12 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
ben25x 12 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.