What is the use of DDV and DDX routines ?

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


Please Help Members By Posting Answers For Below Questions

What is the use of message map? Advantages of a message map.

655


What is vcruntime?

677


Is visual c++ still used?

633


How do I uninstall visual c++?

637


Explain the important features of vc++?

684






Difference between getmessage, postmessage & peakmessage.

687


What is visual c++ 2008 redistributable x64?

635


Does visual c++ 2017 replace 2015?

661


Can I uninstall visual c++?

675


What is the difference between an MLE and an SLE?

5892


What is vcredist_x86 exe?

681


difference between assert and verify.

662


Is microsoft visual c++ a virus?

755


What is vc++ redistributable?

824


Explain the advantages of cwinthread class.

670