Re: From Borland C++ 502 to Visual C++ by Carl
Carl
Sat Jun 04 09:20:20 CDT 2005
Jasp wrote:
> Hi Thank's for your speedy answer. But i'm not a good programmer, i'm
> a student, how do i understand what kind of source i have??
Dive in and start reading the source.
One thought: look for the names of files that are being #included. Attempt
to look up those that you find that are not part of your project in the VC++
documentation, if you don't find them, they're probably something
Borland-specific. For example, you might see #include <stdio.h>, which is a
C (and C++) standard header file and so is supported by VC++.
Does the program in question have a graphical user interface? If so, you're
likely to have to re-write it since Borland had their own proprietary GUI
library.
-cd