Click here to Skip to main content
15,898,035 members

Comments by Member 13180427 (Top 3 by date)

Member 13180427 26-May-17 16:10pm View    
1. Has anyone had success using MFC dialog check boxes for Visual Studio 2010?
2. Please comment on use of .NET programming for Visual Studio 2010. Do all advertised capabilities work?
Member 13180427 26-May-17 15:36pm View    
TRACE(traceAppMsg, 0, "Error: no data exchange control with ID 0x%04X.\n", nIDC);

The ASSERT occurs at line: if(in1DLG.DoModal() == IDOK)
void CDriver::Drive()
{
Cin1DLG in1DLG;
if(in1DLG.DoModal() == IDOK)
{
};
}

Thank you for comments
Member 13180427 26-May-17 15:21pm View    
My IDC_STATIC1 thru IDC_STATIC6 are numbered 1000 thru 1005 in the resource file, and all others are 310 or less. So it must be something else. I did notice the following error: Error: no data exchange control with ID 0x03EA (hex?).
Thank you for your comment KarstenK.