windows_programming_notes.nbk: Home | Index | Next Page: GetDlgItemText | Previous Page: GetDlgItem


 GetDlgItemInt

The GetDlgItemInt function translates the text of a specified control in a dialog box into an integer value.

Syntax

    UINT GetDlgItemInt(
        HWND hDlg,
        int nIDDlgItem,
        BOOL *lpTranslated,
        BOOL bSigned
    );

Parameters

Return Value

If the function succeeds, the variable pointed to by lpTranslated is set to TRUE, and the return value is the translated value of the control text.

If the function fails, the variable pointed to by lpTranslated is set to FALSE, and the return value is zero. Note that, because zero is a possible translated value, a return value of zero does not by itself indicate failure.

If lpTranslated is NULL, the function returns no information about success or failure.

Note that, if the bSigned parameter is TRUE and there is a minus sign (–) at the beginning of the text, GetDlgItemInt translates the text into a signed integer value. Otherwise, the function creates an unsigned integer value. To obtain the proper value in this case, cast the return value to an int type.

To get extended error information, call GetLastError.

Remarks

The GetDlgItemInt function retrieves the text of the specified control by sending the control a WM_GETTEXT message. The function translates the retrieved text by stripping any extra spaces at the beginning of the text and then converting the decimal digits. The function stops translating when it reaches the end of the text or encounters a nonnumeric character.

The GetDlgItemInt function returns zero if the translated value is greater than INT_MAX (for signed numbers) or UINT_MAX (for unsigned numbers).

Function Information


windows_programming_notes.nbk: Home | Index | Next Page: GetDlgItemText | Previous Page: GetDlgItem


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time