Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- M E W E L - <b>int pascal winmove(hwnd hwnd, int row, int col)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
int pascal WinMove(HWND hWnd, int row, int col)

  This function moves a window to a new starting position. In
addition, this function will move all of the window's descendants.

  WinMove() will not do any redrawing on its own. Instead, it will
send WM_MOVE messages to the window's (and all of the window's
descendants') window procedure. You should not do any drawing in
response to the WM_MOVE message either. Instead, you should call
WinDrawAllWindows() or ShowWindow() in order to redraw your
application after all of the various moving is done.

Parameters
  hWnd is the handle of the window to move.
  row and col are the 0-based screen coordinates where the upper-left
   corner of the window will be moved to.

Returns
  Nothing.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson