I have made a chat program with using Winsock2.h and the lib file ws2_32.lib.
When I want to test the chat program out on a computer on another network, it shows me a message box with the text:
“The program can’t start because MSVCR100.dll is missing from your computer. Try reinstalling the program to fix this problem”.
How do I make my program able to run on all windows 7 machines without having to install Visual Studio?
you should create a setup project which includes the required libraries and installs them in the client machine during your application’s setup.
In fact you need a setup anyway if you want to create a shortcut to your program in the Start Menu or on the desktop for example.