Answer Posted / dharani
1)dialog data exchange (DDX)
All dialog data functions are done with C++ code. There are
no special resources or magic macros. The heart of the
mechanism is a virtual function that is overridden in every
dialog class that does dialog data exchange and validation.
It is always found in this form:
Copy Code
void CMyDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX); // call base class
//{{AFX_DATA_MAP(CMyDialog)
<data_exchange_function_call>
<data_validation_function_call>
//}}AFX_DATA_MAP
}
2)dialog data validation (DDV)
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of message map? Advantages of a message map.
What is vcruntime?
Is visual c++ still used?
How do I uninstall visual c++?
Explain the important features of vc++?
Difference between getmessage, postmessage & peakmessage.
What is visual c++ 2008 redistributable x64?
Does visual c++ 2017 replace 2015?
Can I uninstall visual c++?
What is the difference between an MLE and an SLE?
What is vcredist_x86 exe?
difference between assert and verify.
Is microsoft visual c++ a virus?
What is vc++ redistributable?
Explain the advantages of cwinthread class.