|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user32.lib
| Header File
| winuser.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SetDlgItemInt
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
| );
|
|
Parameters
hDlg
Identifies the dialog box that contains the control.
nIDDlgItem
Specifies the control to be changed.
uValue
Specifies the integer value used to generate the item text.
bSigned
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.
Return Values
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.
Remarks
To set the new text, this function sends a WM_SETTEXT message to the specified
control.
See Also
GetDlgItemInt, SetDlgItemText, WM_SETTEXT
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|