Click here to Skip to main content
15,900,686 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [Message Deleted] Pin
ThatsAlok21-Feb-07 6:22
ThatsAlok21-Feb-07 6:22 
GeneralRe: [Message Deleted] Pin
Hamid_RT21-Feb-07 7:11
Hamid_RT21-Feb-07 7:11 
GeneralRe: [Message Deleted] Pin
Newbie0021-Feb-07 23:27
Newbie0021-Feb-07 23:27 
GeneralRe: [Message Deleted] Pin
ThatsAlok22-Feb-07 0:00
ThatsAlok22-Feb-07 0:00 
QuestionHow to draw a bitmap on top of button? Pin
Igor Jerosimic21-Feb-07 1:27
Igor Jerosimic21-Feb-07 1:27 
AnswerRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 1:44
Naveen21-Feb-07 1:44 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic21-Feb-07 2:03
Igor Jerosimic21-Feb-07 2:03 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 2:09
Naveen21-Feb-07 2:09 
why dont u use CBitmapButton?

Another way is to handle the WM_PAINT message of the button and draw the bitmap after the default paint.For this you need to derive a class from CButton and make control variable of button of this class type.I am not sure about this technique.

eg:

void CMyBotton::OnPaint()
{
CButton::OnPaint();
// Draw the bitmap
}

nave

GeneralRe: How to draw a bitmap on top of button? Pin
prasad_som21-Feb-07 2:15
prasad_som21-Feb-07 2:15 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 2:18
Naveen21-Feb-07 2:18 
AnswerRe: How to draw a bitmap on top of button? Pin
prasad_som21-Feb-07 3:02
prasad_som21-Feb-07 3:02 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 16:13
Naveen21-Feb-07 16:13 
AnswerRe: How to draw a bitmap on top of button? Pin
prasad_som21-Feb-07 18:37
prasad_som21-Feb-07 18:37 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 19:52
Naveen21-Feb-07 19:52 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic21-Feb-07 23:37
Igor Jerosimic21-Feb-07 23:37 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen21-Feb-07 23:53
Naveen21-Feb-07 23:53 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic22-Feb-07 0:03
Igor Jerosimic22-Feb-07 0:03 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic26-Feb-07 0:24
Igor Jerosimic26-Feb-07 0:24 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen26-Feb-07 2:08
Naveen26-Feb-07 2:08 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic26-Feb-07 2:16
Igor Jerosimic26-Feb-07 2:16 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen26-Feb-07 2:24
Naveen26-Feb-07 2:24 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic26-Feb-07 2:27
Igor Jerosimic26-Feb-07 2:27 
GeneralRe: How to draw a bitmap on top of button? Pin
Igor Jerosimic28-Feb-07 1:41
Igor Jerosimic28-Feb-07 1:41 
GeneralRe: How to draw a bitmap on top of button? Pin
Naveen28-Feb-07 1:50
Naveen28-Feb-07 1:50 
AnswerRe: How to draw a bitmap on top of button? Pin
prasad_som22-Feb-07 2:37
prasad_som22-Feb-07 2:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.