views:

124

answers:

1

Hello,

Visual Studio 2008.

I downloaded a sample project and unzipped it.

I have to convert it from VS 7 to VS 9. However, the conversion was successful.

However, when I try and compile I get the following error:

c1xx : fatal error C1083: Cannot open source file: 'C:\NMS\inc': Permission denied

However, the inc directory I have used before for other projects. And have successfully included the inc files.

So I am not sure why this project does not work.

Many thanks for any suggestions,

+1  A: 

It looks like it's trying to open a file called C:\NMS\inc, which it can't if that path is a directory.

Anders Abel