VS2010
一、显示“bitmap1”未标识符 将代码bitmap.LoadBitmap(bitmap1.bmp)或bitmap.LoadBitmap(bitmap1.bmp)修改为bitmap.LoadBitmap(IDB_BITMAP1);
二、报错error RC2135: file not found: bitmap1.bmp。
在“”项目名称“”.rc文件下找到报错位置IDB_BITMAP1 BITMAP “bitmap1.bmp”(这里需要是你创建位图所输入的文件名) 需要在.rc文件下找到报错位置IDB_BITMAP1 BITMAP "bitmap1.bmp"修改为IDB_BITMAP1 BITMAP “5555.bmp” 如果你的资源文件下没有 “bitmap1.bmp” “5555.bmp"等文件而.rc代码中出现"bitmap1.bmp"或"5555.bmp” 当你再添加资源的时候会报错error RC2135: file not found: 55555.bmp。