Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Migrating a program to .NET

Status
Not open for further replies.

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 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
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top