Click to See Complete Forum and Search --> : C++ to VB6 conversion tools?


EDS
03-21-2003, 11:25 AM
I came across "Converting C Declarations to Visual Basic" on MSDN, but that's not enough. Can anyone, please, tell me if there are any good utilities that convert C++ code to VB6 code out there? I found very little and useless information on the web.

Thanks a lot, I would really appreciate any help.

kb244
03-27-2003, 11:08 PM
Not really possible unless all your C++ code is as simple as cout<<"something";, because VB cannot handle most of the stuff C++ is known for, especially memory handeling, pointers, Polymorphism, Inhearitance, Classes, and other items to name a few features VB 6 and lower cannot do.

If you want something a bit more like C++ in structure and behavior, you may want to look into VB .Net or just move to C++ all together.