bringwindowtotop (user32)
Last changed: -94.228.21.206

.
Summary

C# Signature:

[DllImport("user32.dll", SetLastError=true)]
static extern bool BringWindowToTop(IntPtr hWnd);

[DllImport("user32.dll", SetLastError=true)]
static extern bool BringWindowToTop(HandleRef hWnd);

VB Signature:

<DllImport("user32.dll", SetLastError:=True)> _
Private Shared Function BringWindowToTop(ByVal hwnd As IntPtr) As Boolean
End Function
'Or just
Public Declare Function BringWindowToTop Lib "user32" (ByVal HWnd As IntPtr) As Boolean

User-Defined Types:

None.

Notes:

Please add some!

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

BringToFront();

Documentation