I’ve written a console application that “screen scrapes” data from various websites and produces an Intranet website on your local disk as output. To keep it simple all of my data input is in the form of tab delimited text files. I want to share the program with a few of my friends who are not computer geeks. I’m using Visual Studio 2008 and I’ve never shared code with anyone who does not have the development environment already on their PC.
It uses Windows.h, but does not have any windows form interface. It also uses wininet.h to read various web pages.
Is there an easy way to produce an EXE file that will run standalone? What is the best way to create a distributable version for my friends?
The best way to share your code with your friends is to just have them install the CRT for that version of Visual Studios. That's assuming they don't already have it. This will also make it easier for you to share future projects with them as well.