Nov 17, 2003 #1 BryanY MIS Joined Aug 18, 2001 Messages 54 Location US I'm currently trying to update a program developed for Visual C++ 6 so that it will be compatible with Visual c++ .NET I was wondering if you guys could recommend a book that deals with this procedure.
I'm currently trying to update a program developed for Visual C++ 6 so that it will be compatible with Visual c++ .NET I was wondering if you guys could recommend a book that deals with this procedure.
Nov 17, 2003 #2 Cagliostro Programmer Joined Sep 13, 2000 Messages 4,226 Location GB I think there is nothing magic. Take attention at STL. any stl .h files you should change to exapmle: #include<iostream.h> change to #include<iostream> #include<vector.h> change to #include<vector> Any other changes compiller will do without you to take care about it. Ion Filipski Upvote 0 Downvote
I think there is nothing magic. Take attention at STL. any stl .h files you should change to exapmle: #include<iostream.h> change to #include<iostream> #include<vector.h> change to #include<vector> Any other changes compiller will do without you to take care about it. Ion Filipski