Practical MFC Techniques for Windows Desktop Applications
Debugging with Message Boxes When debugging MFC applictaions, AfxMessageBox serves as a simple output mechanism for inspecting variable values at runtime. CString debugOutput; debugOutput.Format(_T("Current index value: %d"), index); AfxMessageBox(debugOutput); Controlling Window Resize Be...