Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Please this might sound newbie - ish but I just couldn't get it to work since...

What is the steps to add a file (say file.exe) to resource in Visual Studio 2012 so that I can find the resource with FindResource(hInstance, MAKEINTRESOURCE(idResource), MAKEINTRESOURCE(RC_BINARYTYPE));

Please I have tried Going to the Resource View and right clicking on the *.rc but I don't know how to add the RC_BINARYTYPE part

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
586 views
Welcome To Ask or Share your Answers For Others

1 Answer

In VisualStudio 2015, MOHW's answer didn't help me but this worked:

program.rc file:

IDR_TIMS_FILE         RCDATA      "C:\Users\Tim\Desktop\Binary.dat"

program.cpp file:

src = FindResource(NULL, MAKEINTRESOURCE(id), RT_RCDATA);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...