linking vb.net user interface with c++ dll function
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
may i know if there is any sample codes on how to link vb.net GUI with c++ DLL functions? thanks
-
may i know if there is any sample codes on how to link vb.net GUI with c++ DLL functions? thanks
That is hellishly difficult. C++ compilers mangle the names of classes and functions so that they can be uniquely identified. The names exposed by the DLL will be the mangled versions such as "@MyClass@#SomeFunction@$%$@%@@". The mangled format is different for most compilers, and sometimes different between different versions of the same compiler. --Colin Mackay--
-
may i know if there is any sample codes on how to link vb.net GUI with c++ DLL functions? thanks