fatal error LNK1104

visual-c++

Solution

This can happen because, for example, the executable is currently executing or opened by another program, or because you don't have the right permissions for that directory.

Problem

When I compile my code in visual studio c++ 2008 I get the following error: ``` fatal error LNK1104: cannot open file 'C:\Users\...\Documents\Visual Studio 2008\Projects\...\Debug\....exe ``` I just copied my code from another project in visual studio C++ and pasted it in this project again in VS C++. Can it cause this error?

Original source

Related problems