Expand
MoveWindow Function

Changes the position and dimensions of the specified window. For a top-level window, the position and dimensions are relative to the upper-left corner of the screen. For a child window, they are relative to the upper-left corner of the parent window's client area.

Syntax

BOOL WINAPI MoveWindow(
  __in  HWND hWnd,
  __in  int X,
  __in  int Y,
  __in  int nWidth,
  __in  int nHeight,
  __in  BOOL bRepaint
);

Parameters

hWnd [in]
HWND

A handle to the window.

X [in]
int

The new position of the left side of the window.

Y [in]
int

The new position of the top of the window.

nWidth [in]
int

The new width of the window.

nHeight [in]
int

The new height of the window.

bRepaint [in]
BOOL

Indicates whether the window is to be repainted. If this parameter is TRUE, the window receives a message. If the parameter is FALSE, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of moving a child window.

Return Value

BOOL

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

If the bRepaint parameter is TRUE, the system sends the WM_PAINT message to the window procedure immediately after moving the window (that is, the MoveWindow function calls the UpdateWindow function). If bRepaint is FALSE, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing.

MoveWindow sends the WM_WINDOWPOSCHANGING, WM_WINDOWPOSCHANGED, WM_MOVE, WM_SIZE, and WM_NCCALCSIZE messages to the window.

Examples

For an example, see Creating, Enumerating, and Sizing Child Windows.

Requirements

Minimum supported client

Windows 2000 Professional

Minimum supported server

Windows 2000 Server

Header

Winuser.h (include Windows.h)

Library

User32.lib

DLL

User32.dll

See Also

Reference
SetWindowPos
WM_GETMINMAXINFO

 

Conceptual
Windows

 

Other Resources
UpdateWindow
WM_PAINT

 

 

Send comments about this topic to Microsoft

Build date: 6/4/2010

Community ContentAdd
Possible VB6 declaration
Private Declare Function MoveWindow Lib "user32.dll" (ByVal hwnd As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal bRepaint As Long) As Boolean

Usage:

Public Sub Move(ByVal Left As Long, ByVal Top As Long, ByVal Width As Long, ByVal Height As Long, Optional ByVal Repaint As Boolean = True)

If NOT MoveWindow(hWnd, Left, Top, Width, Height, Repaint) Then
Err.Raise vbObjectError, "MoveWindow", "MoveWindow returned error: H" & Hex$(Err.LastDllError)

End If






End Sub

Page view tracker