How can i change the color of a dropdowncombobox elements

Answers were Sorted based on User's Feedback



How can i change the color of a dropdowncombobox elements..

Answer / sirama

Do control sub-classing with ownerdraw. Override DrawItem
and MeasureItem.

Use the sub-classed control

Is This Answer Correct ?    1 Yes 0 No

How can i change the color of a dropdowncombobox elements..

Answer / sanjay20

to change color of all controls
window message "WM_CTLCOLOR" needs to process

in MFC this can be done by modifying OnCtlColor()

eg.

HBRUSH CTestDlg::OnCtlColor(CDC* pDC, CWnd* pWnd,
UINT nCtlColor)
{
HBRUSH hbr;

switch (nCtlColor)
{
// process my edit controls by ID.
case CTLCOLOR_EDIT:
case CTLCOLOR_MSGBOX:
switch (pWnd->GetDlgCtrlID())
{
// first CEdit control ID
case IDC_MYCONTROLNAME1:
// put your own CONTROL ID here
pDC->SetBkMode(TRANSPARENT); // make text
// background transparent
pDC->SetTextColor(RGB(255,0,0));
// change the text color to red.
hbr = (HBRUSH) GetStockObject(NULL_BRUSH);
// apply a null brush, so control's rectangle
// isn't filled.
break;
// otherwise, do default handling of OnCtlColor
default:
hbr=CDialog::OnCtlColor(pDC,pWnd,nCtlColor);
}

return hbr; // return brush
}

refer
http://www.codeguru.com/cpp/controls/editctrl/backgroundcolor/article.php/c3929/
for more information

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More MFC Interview Questions

1)set the Title for The File DialogBox, in MFC?

1 Answers  


What is thread & process?

15 Answers   Exaband,


How to update windows title bar dynamically?

7 Answers   HCL,


What is the difference between hinsrtance and hprevinstance in WinMain function?

3 Answers  


Which CPrintInfo member variable must be set for multiple page printouts?

1 Answers  






if i modified data in 1 view how does the other view knows

2 Answers   Siemens,


What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?

5 Answers   Atos Origin,


How to handle RTTI in MFC ?

1 Answers  


what is the meaning of constant FILE EXCEEDS LENGTH LIMIT while loading from ps file to vsam in the jcl?

0 Answers  


What is stack size in win32 program?

1 Answers   HCL,


Whats is DDX & DDV in MFC?

1 Answers   HCL,


What is the base class for MFC Framework ?

2 Answers   Mphasis,


Categories