GetDlgItem (user32)
Last changed: jursky214@gmail.com-88.212.40.132

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr GetDlgItem(IntPtr hDlg, int nIDDlgItem);

User-Defined Types:

None.

VB Signature:

<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Function GetDlgItem(
    ByVal hDlg As IntPtr,
    nIDDlgItem As Integer) As IntPtr
End Function

OR, using Declare statement:

Private Declare Function GetDlgItem Lib "user32" (ByVal hDlg As IntPtr, nIDDlgItem As Integer) As IntPtr

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
GetDlgItem on MSDN