void SetDlgItemInt(hwndDlg, idControl, uValue, fSigned) | |||||
HWND hwndDlg; | /* handle of dialog box | */ | |||
int idControl; | /* identifier of control | */ | |||
UINT uValue; | /* value to set, */ | ||||
BOOL fSigned; | /* signed or unsigned indicator | */ |
The SetDlgItemInt function sets the text of a given control in a dialog box to the string representation of a specified integer value.
hwndDlg
Identifies the dialog box that contains the control.
idControl
Specifies the control to be changed.
uValue
Specifies the integer value used to generate the item text.
fSigned
Specifies whether the uValue parameter is signed or unsigned. If this parameter is TRUE, uValue is signed. If this parameter is TRUE and uValue is less than zero, a minus sign is placed before the first digit in the string. If this parameter is FALSE, uValue is unsigned.
This function does not return a value.
SetDlgItemInt sends a WM_SETTEXT message to the given control.