Showing a BMP picture on the dialog

I am new to VISUAL C, here is my questions.
I insert a bitmap resource, and want to show it on the dialog,
but I have no idea of how to show it properly, so I had to
insert a group box button to show the picture as below.

bmp.LoadBitmap(IDB_BITMAP1);
m_groupbox.SetBitmap((HBITMAP)bmp);

But the border of the group box is also shown. so I want to know are there any other good methods
showing a BMP on the dialog.
Thanks for any help!
[480 byte] By [forester] at [2007-11-18 2:14:26]
# 1 Re: Showing a BMP picture on the dialog
1) Add bitmap resource to the project
2) Add Picture control to the dialog
3) Right-click Picture control and select Type = Bitmap, Image = bitmap ID.
Alex F at 2007-11-10 8:56:32 >