CWnd::SetDlgItemInt

Sets the text of a given control in a dialog box to the string representation of a specified integer value.

void SetDlgItemInt(
   int nID,
   UINT nValue,
   BOOL bSigned = TRUE 
);

Parameters

  • nID
    Specifies the integer ID of the control to be changed.

  • nValue
    Specifies the integer value used to generate the item text.

  • bSigned
    Specifies whether the integer value is signed or unsigned. If this parameter is TRUE, nValue is signed. If this parameter is TRUE and nValue is less than 0, a minus sign is placed before the first digit in the string. If this parameter is FALSE, nValue is unsigned.

Remarks

SetDlgItemInt sends a WM_SETTEXT message to the given control.

Example

See the example for CWnd::SetDlgItemText.

Requirements

Header: afxwin.h

See Also

Concepts

CWnd Class

CWnd Members

Hierarchy Chart

CWnd::GetDlgItemInt

SetDlgItemInt

WM_SETTEXT