I've made a fairly simple Windows form app, using C# in VS2012. When I copy the contents of \Bin\Release to a different folder on the (Windows 8) PC on which I made the app, everything runs fine. However, when I copy this folder to a different PC (Windows 7) and try to run the EXE, I get an immediate error from Windows:
Program has stopped working. Problem Event Name: CLR20r3 Problem Signature 09: System.IO.FileNotFoundException
The folder and it's contents are exactly the same as on the other PC, where I built the app. It includes the .EXE file, an .SDF (SQL Compact) database file and Microsoft.Office.Interop.Excel.DLL (I had to include this DLL for a certain function, but on the PC on which I built it, the standalone application runs from it's own folder without having to include this DLL, so I'm not sure if I should include it on other PC's).
So far, I've tried copying the DLL to Windows\System32, updated .NET Framework + reboot, run as Administrator.
I'm hoping to make this standalone application run on a Windows 7 PC and a Windows XP laptop. Both of them do not have Visual Studio installed. Can anyone please help me?