发新话题
打印

弱问题:如何用文件名而不是ID号显示图像

IDB_BITMAP1是程序的资源,如果是文件的话,你应当加上路径.

TOP

LoadBitmap 只能加载工程中的资源,不能加载图型文件

这是MSDN中的说明
LoadBitmap : Initializes the object by loading a named bitmap resource from the application’s executable file and attaching the bitmap to the object.

建议你将相关文件加入系统资源,然后调用.

TOP

不能这样加入资源文件,将文件加入资源的方法是
点击 菜单 Insert ,然后点 Resource ,这时出现一个窗口,选择Bitmap,然后点 Import,在选择文件的对话框中选择所有文件,选中后,在新出现在窗口出在Resource type中输入Bitmap,然后点OK

TOP

你去这里看看,有没有你需要的源代码。

http://www.lihuasoft.net/source/list.php?frmid=19

Bitmap 位图、光标等资源编程的例子
http://www.lihuasoft.net/source/show.php?id=729

TOP

发新话题