I changed the dialog box default color in an application I am developing but the buttons are still the default grey. I used the following code in the CMyApp::InitInstance()of the MyApp.cpp file.<br><br>// set the background color for all dialogs to slate blue // with black text<br> SetDialogBkColor(RGB(166, 202, 240), RGB(0, 0, 0));<br><br>How can I change the color of the buttons in my dialog box as well?<br><br>Thank you.