TRY
Expand Minimize
This topic has not yet been rated - Rate this topic

DDX_OCBool

The DDX_OCBool function manages the transfer of BOOL data between a property of an OLE control in a dialog box, form view, or control view object and a BOOL data member of the dialog box, form view, or control view object.

void AFXAPI DDX_OCBool( 
   CDataExchange* pDX, 
   int nIDC, 
   DISPID dispid, 
   BOOL& value  
);
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 an OLE control in the dialog box, form view, or control view object.

dispid

The dispatch ID of a property of the control.

value

A reference to a member variable of the dialog box, form view or control view object with which data is exchanged.

For more information about DDX, see Dialog Data Exchange and Validation.

Header: afxdisp.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.