Simple way to change dialog's background and text colors
Posted
by Nikolay Sokratov
on February 8th, 1999
BOOL CMyApp::InitInstance()
{
...
// lets set red background and green text for our dialogs
SetDialogBkColor(RGB(255, 0, 0), RGB(0, 255, 0));
...
}
Last updated: 13 May 1998

Comments
There are no comments yet. Be the first to comment!