When you use
DDX for record views works in conjunction with:
-
RFX for recordsets of class CRecordset (ODBC).
-
DFX for recordsets of class CDaoRecordset (DAO).
Although they differ in implementation, at the interface level RFX and DFX are very similar data exchange mechanisms. The DAO version, DFX, is modeled closely on the earlier ODBC version, RFX. If you know how to use RFX, you know how to use DFX.
RFX and DFX move data between the current record of the data source and the field data members of a recordset object. DDX moves the data from the field data members to the controls in the form. This combination fills the form controls initially and as the user moves from record to record. It can also move updated data back to the recordset and then to the data source.
The following figure shows the relationship between DDX and RFX (or DFX) for record views.

For more information about DDX, see