Re: CBitmapButton in MFC dialog
Did you do all of this?
To include a bitmap-button control in a dialog box
1.. Create one to four bitmap images for the button.
2.. Create a dialog template with an owner-draw button positioned where
you want the bitmap button. The size of the button in the template does not
matter.
3.. Set the button's caption to a value such as "MYIMAGE" and define a
symbol for the button such as IDC_MYIMAGE.
4.. In your application's resource script, give each of the images created
for the button an ID constructed by appending one of the letters "U," "D,"
"F," or "X" (for up, down, focused, and disabled) to the string used for the
button caption in step 3. For the button caption "MYIMAGE," for example, the
IDs would be "MYIMAGEU," "MYIMAGED," "MYIMAGEF," and "MYIMAGEX." You must
specify the ID of your bitmaps within double quotes. Otherwise the resource
editor will assign an integer to the resource and MFC will fail when loading
the image.
5.. In your application's dialog class (derived from CDialog), add a
CBitmapButton member object.
6.. In the CDialog object's OnInitDialog routine, call the CBitmapButton
object's AutoLoad function, using as parameters the button's control ID and
the CDialog object's this pointer.
7.. Make sure the button has the owner draw flag set.
Honestly I would associate a CBitmapButton object to the control using
DDX_Control, and then use the SetBitmaps method.
AliR.
"Shahoo" <shahookamangar@gmail.com> wrote in message
news:1171404456.224149.239040@a75g2000cwd.googlegroups.com...
Hi,
I want to use CBitmapButton in MFC dialogs but the AutoLoad function
fails to load the bitmaps.
I have done it accorfing to MSDN.
Can anyone help me with that please. (Examples are better).
Thanks in advance.