How long is your programming career going to continue until u move over
to management ? As long as you are going to code for less than 10 years
u should have no problem with VC++. ;)
...
Take a look at WMI. It contains features to enumerate most of the resources
used by the system. Just changing the parameters would enable you to
even get the bios serial number of any...
What do u mean by "It will not work in the other OS" ? Please check if you
have the same project settings for the "Release" build and the "Debug" build.
You might have forgotten to set the...
The compression functionality available in Windows XP is not what you think
it is. It does not compress as winzip does. It works like the "Compress
drive to save disk space" option...
Since you have finished reading the bytes and have written them to the destfile, it means that the download is done. You dont need to check any
condition after calling destFile.Close(). You...
Create a DLL using ATL COM that exposes your functionality. Take a look
at Variants, BSTR and SafeArray which would help you use your code
from other languages.
You can use either GDI+ as mentioned by jayender.vs or you can take a
look at a free open source library called CxImage if you need to do raw
processing of the image data.