views:

76

answers:

1

I want to code a VC++ 9 based console application which downloads an image from a webserver.

I have code which used to run in VC++ 6, but its giving lot of compilation errors in VC++ 9.0.

I need code which compiles in VC++ 9.0 using MS Visual Studio 2008.

Also I need only win32 code and not MFC.

+2  A: 

To download something from the Web you could use libcurl library. It doesn't use MFC.

Kirill V. Lyadvinsky
Thanks for the help Kirill...
Sumit Ghosh