The SetDlgItemInt function sets the text of a control in a dialog box to the string representation of a specified integer value.
BOOL SetDlgItemInt(
HWND hDlg, // handle of dialog box
int nIDDlgItem, // identifier of control
UINT uValue, // value to set
BOOL bSigned // signed or unsigned indicator
);
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
To set the new text, this function sends a WM_SETTEXT message to the specified control.
Windows CE: The bSigned parameter is not used. All values passed in the nValue parameter are assumed to be signed.
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Requires version 1.0 or later.
Header: Declared in winuser.h.
Import Library: Use user32.lib.
Dialog Boxes Overview, Dialog Box Functions, GetDlgItemInt, SetDlgItemText, WM_SETTEXT