Question re Visual Studio C++ Express

I have noticed something that suggested VS C++ Express does *not* support the Resource Editor.

This may explain why I have not been able to work out how to "paint" .png images in the application window I have created.

If the above is true, is there still any way I can do what I am trying to do... for the first time, after becoming reasonably familiar with C++ 2010 doing things that do not involve windows?

Thanks in advance,

johngross
The Resource Editor manages stock resources and updates the project's resource.rc/resource.h files.

You can create the images yourself and add them to your project's resource files yourself.
https://en.wikibooks.org/wiki/Windows_Programming/Resource_Script_Reference
Thanks for responding so promptly, kbw.

I am still missing something important. I have tried to follow the instructions in the link you gave, but I'm still getting compile errors.

My .rc file contains:

#include <windows.h>
#define IDC_STATIC -1

IDB_Back BITMAP DISCARDABLE "C:\...\b1fv.png";

and I have added to my .cpp source the following:

HBITMAP hBmp;
hBmp = LoadBitmap(hInst, "IDB_Back");

immediately after:

HINSTANCE hInst;

I think the problem is very likely to be that I have not "compiled" the resource "source" file into a proper resource, but when I look in the VS C++ help documentation for the Resource Editor, it tells me to click on this and that... and some of what it tells me to click on is simply not there!

Which is why I asked if it is true that the VS *Express* version of C++ 2010 does *not* support/include the Resource Editor - something I found somewhere when I first began looking for help on the Web.
Topic archived. No new replies allowed.