I found lots of examples on how to change the dialog vbackground color--all the examples agree with each other.
BOOL CEzApp::InitInstance()
{
SetDialogBkColor(RGB(255, 255, 255), RGB(0, 0, 0));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
...
This gives me compiler error c3861 Identifier not found ...
What's wrong?
BOOL CEzApp::InitInstance()
{
SetDialogBkColor(RGB(255, 255, 255), RGB(0, 0, 0));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
...
This gives me compiler error c3861 Identifier not found ...
What's wrong?