Change Dialog Box Background Color 
Author Message
 Change Dialog Box Background Color

How do you change the background color of a dialog box from one of the box's
event handlers?

Thanks,
Mike Ober.



Mon, 18 Mar 2002 03:00:00 GMT  
 Change Dialog Box Background Color
In Win32:
Handle WM_CTLCOLORDLG
In MFC:
Handle WM_CTLCOLOR

--
Mickey Williams
Author - Programming Windows 2000  Unleashed
Teach Yourself Visual C++ in 24 Hours



Quote:
> How do you change the background color of a dialog box from one of the
box's
> event handlers?

> Thanks,
> Mike Ober.



Mon, 18 Mar 2002 03:00:00 GMT  
 Change Dialog Box Background Color

OnEraseBkgnd () corresponding to WM_ERASEBKGND
And in WinApp the
SetDialogBkColor( COLORREF ( RGB (198, 189, 231) ), COLORREF ( RGB(0, 0,
0) ) );
Set dialog box and message box colors

--
MidiGlass, TR3CheatWin, Screen Saver Generator

Web Site: http://perso.club-internet.fr/macallan



Mon, 18 Mar 2002 03:00:00 GMT  
 Change Dialog Box Background Color


Quote:

> OnEraseBkgnd () corresponding to WM_ERASEBKGND
> And in WinApp the
> SetDialogBkColor( COLORREF ( RGB (198, 189, 231) ), COLORREF ( RGB(0, 0,
> 0) ) );
> Set dialog box and message box colors

Not really sure why you responded to my post but:

OnEraseBkgnd is the wrong place to change the color of the dialog box -
you're working too hard.  The default processing for WM_ERASEBKGND will use
the brush returned from WM_CTLCOLORDLG.

- and -

SetDialogBkColor changes the colors for all dialog boxes in an application,
which is not what the original poster asked for.

--
Mickey Williams
Author - Programming Windows 2000  Unleashed
Teach Yourself Visual C++ in 24 Hours



Mon, 18 Mar 2002 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Change background color of dialog box title

2. Change background color of a Dialog box?

3. I would like to change the background color of a dialog box

4. Change background color of a Dialog box?

5. Changing the Background Color of a Dialog to match the background of a Bitmap

6. Change the background color of a dialog box and change text color of Edit Box, Static Text, Rich Edit

7. Changing background color of a group box

8. changing background color of a message box?

9. How to change the background color of an edit box

10. Changing the background color of a check box...

11. change background color of drop down list box

12. background color for dialog box

 

 
Powered by phpBB® Forum Software