I'm creating a kinect project in Visual Studio 2008 using OpenNi, NITE and OpenGL.

At random times dureing development I get the following error:

Error result 1 returned from 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\rc.exe'.

I've searched the internet with no luck.

I am able to create a new project and copy all my code across and it works fine but this is not something I want to be doing multiple times each day.

If any more info is required I'd be happy to give it.

EDIT full output window reads

1>------ Build started: Project: PointViewer, Configuration: Debug Win32 ------
1>Compiling resources...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation.  All rights reserved.
1>fatal error RC1110: could not open ..\Res\NITE.rc
1>Project : error PRJ0002 : Error result 1 returned from 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\rc.exe'.
1>Build log was saved at "file://d:\Documents\Uni work\Year 4\Personal Project\Samples \PointViewer\Debug\BuildLog.htm"
1>PointViewer - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
link|improve this question

Anything special about the .rc files (resource files) that it's trying to compile? – selbie Feb 9 at 23:17
1  
So you're saying that once this error occurs it 'sticks' and that to work around it you have to create a new project? Stopping/starting Visual Studio doesn't clear the problem? – Michael Burr Feb 9 at 23:20
Have you seen social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/…? (Found by Googling "error result 1 returned from" "rc.exe".) – ruakh Feb 9 at 23:21
Logging what`rc.exe` does using Process Monitor (technet.microsoft.com/en-us/sysinternals/bb896645) might help figure out what's going on. – Michael Burr Feb 9 at 23:22
1  
I really believe there is an error message being returned just before that final "Error result." Be sure you are looking at the full output, not just the "errors and warnings window". The lines leading up to the final error should tell you what is going wrong. Post full output of your build-step here. – abelenky Feb 9 at 23:27
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

You are referencing your RC file via a relative path (..).
It seems likely your current directory is changing, and hence .., and the path to your RC file changes, causing the error.

You will have to make sure that your RC file is referred to in a way that doesn't change. Try removing it from the project, and re-adding it, taking care to refer to it only in absolute terms.

Check your project and build settings for the directory where the build is to start, and how the filename is preserved in the project settings. You're looking for something like "Persist Filenames As...".

link|improve this answer
You're absolutely right. What I dont understand though is why it worked for a while after I moved my project. Thank you for your answer though. – John Lilley Feb 9 at 23:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.