Nov 17, 2003 #1 BryanY MIS Aug 18, 2001 54 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 Sep 13, 2000 4,226 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