BitMapButton using VC++ -MFC
-
Hai, I am new to vc++ - MFC. How to create a bitmap button on a dialog based window. Help me. Thanks to all supports. Regards, Selvan
Check this links - 1. http://www.codersource.net/mfc_bitmap_button.html[^] 2. http://www.functionx.com/visualc/controls/bmpbtn.htm[^]. Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.
-
Hai, I am new to vc++ - MFC. How to create a bitmap button on a dialog based window. Help me. Thanks to all supports. Regards, Selvan
Hi, 1) You can use CBitmapButton to create a Button. For this you have to set OwnerDraw property of the button to TRUE. (According to my experience you can Load only BMP images on this Button.) 2) You can create Button using CButton class. For this kind of button you can load any image using SetBitmap() method. Regards, Madyastha