16.2 How do I load a BMP file that has been added to my solution as an embedded resource?
If you add a BMP file to your solution using the File|Add Existing Item... Menu Item, then change the Build Action property of this BMP file to Embedded Resource, you can then access this resource with code similar to:
// WindowsApplication6 corresponds to Default Namespace in your project settings.
// subfolders should be the folder names if any, inside which the bmp is added. If the bmp was added to the top level, you don't have to specify anything here.