RESPUESTA A LA PREGUNTA 14482 - POWER BUILDER typedef struct _WINDOWPOS { // wp HWND hwnd; HWND hwndInsertAfter; int x; int y; int cx; int cy; UINT flags; } WINDOWPOS; The WINDOWPOS structure contains information about the size and position of a window. Members hwnd Identifies the window. hwndInsertAfter Specifies the position of the window in Z order (front-to-back position). This member can be the handle of the window behind which this window is placed, or can be one of the special values listed with the SetWindowPos function. x Specifies the position of the left edge of the window. y Specifies the position of the top edge of the window. cx Specifies the window width, in pixels. cy Specifies the window height, in pixels. flags Specifies the window position. This member can be one of the following values: Value Meaning SWP_DRAWFRAME Draws a frame (defined in the window's class description) around the window. The window receives a WM_NCCALCSIZE message. SWP_HIDEWINDOW Hides the window. SWP_NOACTIVATE Does not activate the window. SWP_NOCOPYBITS Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window has been sized or repositioned. SWP_NOMOVE Retains the current position (ignores the x and y parameters). SWP_NOOWNERZORDER Does not change the owner window's position in the Z order. SWP_NOSIZE Retains the current size (ignores the cx and cy parameters). SWP_NOREDRAW Does not redraw changes. SWP_NOREPOSITION Same as the SWP_NOOWNERZORDER flag. SWP_NOZORDER Retains the current Z order (ignores the hwndInsertAfter member). SWP_SHOWWINDOW Displays the window. Adolfo Chairez achairez@lajat.com.mx