다음을 통해 공유


DDX_FieldLBString

The DDX_FieldLBString copies the current selection of a list box control in a record view to a CString field data member of a recordset associated with the record view.

void AFXAPI DDX_FieldLBString( 
   CDataExchange* pDX, 
   int nIDC, 
   CString& value, 
   CRecordset* pRecordset  
); 
void AFXAPI DDX_FieldLBString( 
   CDataExchange* pDX, 
   int nIDC, 
   CString& value, 
   CDaoRecordset* pRecordset  
);

매개 변수

  • pDX
    A pointer to a CDataExchange object. The framework supplies this object to establish the context of the data exchange, including its direction.

  • nIDC
    The ID of a control in the CRecordView or CDaoRecordView object.

  • value
    A reference to a field data member in the associated CRecordset or CDaoRecordset object.

  • pRecordset
    A pointer to the CRecordset or CDaoRecordset object with which data is exchanged.

설명

In the reverse direction, this function sets the current selection in the list box to the first row that begins with the characters in the string specified by value. On a transfer from the recordset to the control, if the recordset field is Null, any selection is removed from the list box. On a transfer from control to recordset, if the control is empty, the recordset field is set to Null.

Use the first version if you are working with the ODBC-based classes. Use the second version if you are working with the DAO-based classes.

DDX에 대한 자세한 내용은 대화 상자 데이터 교환 및 유효성 검사를 참조하십시오. For examples and more information about DDX for CRecordView and CDaoRecordView fields, see the article Record Views.

예제

See DDX_FieldText for a general DDX_Field example. Calls to DDX_FieldLBString would be similar.

요구 사항

Header: afxdao.h

참고 항목

참조

DDX_FieldText

DDX_FieldRadio

DDX_FieldLBStringExact

DDX_FieldCBString

DDX_FieldCBStringExact

DDX_FieldCBIndex

DDX_FieldLBIndex

DDX_FieldScroll

개념

MFC 매크로 및 전역