Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i try to compile an old project using VS express 2010 and i get the error:

1>terrain2.rc(10): fatal error RC1015: cannot open include file 'afxres.h'. from this code

/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"

i have installed windows SDK already, but without any success.

thanks!

share|improve this question

2 Answers

up vote 28 down vote accepted

This header is a part of the MFC Library. VS Express edition doesn't contain MFC. If your project doesn't use MFC you can safely replace afxres.h with windows.h in your terrain2.rc.

share|improve this answer
thanks, then i get the error: error RC2104: undefined keyword or key name: IDC_STATIC – clamp Aug 25 '10 at 13:16
@clamp: that sounds like a Common Control definition. try adding #include <Commctrl.h> as well (and link your program to Comctl32.lib) – Default Aug 25 '10 at 13:28
   
Otherwise IDC_STATIC is defined as -1, so define it yourself if that's the only problem remaining. – erikH Jun 26 '12 at 11:46
6  
winres.h defines IDC_STATIC so you can likely just #include <winres.h> rather than afxres.h or windows.h. – Conrad Poelman Oct 20 '12 at 5:51
I was surprise to see that I've got the same error on 2012 ultimate, I haven't found why yet, maybe they get rid of it in 2012. – ForceMagic Apr 28 at 4:23

You can also try replace afxres.h with WinResrc.h

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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