The information in this article applies to:
SYMPTOMSWhen you use ClassWizard to map a drop list combobox to a foreign CRecordset object's field through a record view integer member variable, ClassWizard generates a call to DDX_FieldCBIndex in the record view's DoDataExchange() member function:
When compiling the program, the compiler gives you the following compiler
error:
CAUSEThe DDX_FieldCBIndex function is not implemented by the Microsoft Foundation Classes. RESOLUTIONDo not bind the integer data member of the record view to a drop down combo box. Bind the data member to an edit control. STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was fixed in Microsoft Visual C++, 32-bit Edition, version 4.0. MORE INFORMATIONWhen implementing CRecordView and CRecordSet classes, ClassWizard completes two data exchanges. Data is exchanged between the record view control and the record view data members and between it and the record set data members, which are linked to the database fields.
For record view data members that have a corresponding database field, the
DDX_Fieldxxx set of functions are used to perform DDX. For those members
without corresponding database fields, the DDX_xxx set of functions are
used. For every DDX_xxx function, there is typically a corresponding
DDX_Fieldxxx function.
The corresponding data exchange function for DDX_FieldCBIndex() is DDX_CBIndex(), which obtains the index position of the item in the listbox portion of the combobox. This information is meaningless outside of the combo box unless it corresponds to a predefined string. If this is the case, then the data member should be bound to an edit control. REFERENCESFor more information on binding record view fields to recordset objects, please see the following MFC Encyclopedia articles: ClassWizard: Mapping Form Controls to Recordset Fields Additional query words: 1.50 1.51 1.52 2.00 2.10 2.20
Keywords : kbwizard kbMFC kbVC |
Last Reviewed: February 2, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |