how to give colour for dialog button or static buuto?any
one explain full code ?pls pls
Answers were Sorted based on User's Feedback
Answer / abhishek kesharwani
Brush *brush;
Initialize the brush pointer in the constructor of your Dialog
Code:
brush = new CBrush(RGB(49,49,49));
Add the WM_CTLCOLR Message handler for the dialog and add the following code
Code:
switch (nCtlColor) {
case CTLCOLOR_BTN:
pDC->SetTextColor(RGB(0, 255, 0));
pDC->SetBkColor(RGB(0, 0, 0));
return (HBRUSH)(brush->GetSafeHandle());
default:
return CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / harinish
use wm_drawitem function to color the button or static box
| Is This Answer Correct ? | 1 Yes | 5 No |
Answer / pranesh archak
Subclass the control (button or static control) and use
message refelction for message handling.
| Is This Answer Correct ? | 0 Yes | 4 No |
What is the use of OninitDialog ?
what is the difference between SDI and MDI
15 Answers CMC, HCL, Siemens,
what if we provide two message handler for same message ?
if i modified data in 1 view how does the other view knows
1)set the Title for The File DialogBox, in MFC?
What is the use of CCmdTarget ?
how to give colour for dialog button or static buuto?any one explain full code ?pls pls
1)How to change a text of a button in runtime?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
is it possible to display a window .without using windowclass
plzz tell me what we can do and dont in tally ERP & sap business one?
What is CSingleDocTemplate?