I created a program with managed code in visual C++. Its just an executable file, with no installation. It runs on my computer flawlessly but when I try it on a different computer, I get an error. Both my computers are Windows XP. I used Visual C++ 2008 Version 9.0.30729.1 SP to make the program.
"This application has failed to start because the application
configuration is incorrect. Reinstalling the application may fix this
problem"
On the computer with the error, I have 3.5 .net framework and the Microsoft Visual C++ 2008 Runtime Libraries installed
I still get the error.
I tried to look for what my program is dependent on using Dependency Walker. This is what I got:
"Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module."
I do not know what else I can do. Please help me!
Here are my Includes:
| #include <iostream> |
| #include <time.h> |
| #include <windows.h> |
| #include <string> |
| #include <vector> |
| #include <fstream> |
Here are the files used when building the program:
| app.ico |
| app.rc |
| AssemblyInfo.cpp |
| Form1.h |
| Form1.resX |
| IDs.txt |
| Raid Joiner.cpp |
| resource.h |
| stdafx.cpp |
| stdafx.h |
|