 |
 |
 |
|
|  |  |
 |
CreateWindowEx Add comment W32 Constants Translate this page |
 |
 |
|
Creates an overlapped, pop-up, or child window with an extended window style; otherwise, this function is identical to the CreateWindow function |
 |  | | Code examples: |  | |
|
 |  | | Declaration: |  |  |
HWND CreateWindowEx(
DWORD dwExStyle, // extended window style
LPCTSTR lpClassName, // registered class name
LPCTSTR lpWindowName, // window name
DWORD dwStyle, // window style
int x, // horizontal position of window
int y, // vertical position of window
int nWidth, // window width
int nHeight, // window height
HWND hWndParent, // handle to parent or owner window
HMENU hMenu, // menu handle or child identifier
HINSTANCE hInstance, // handle to application instance
LPVOID lpParam // window-creation data
);
|
 |  |  | | FoxPro declaration: |  |  |
DECLARE INTEGER CreateWindowEx IN user32;
INTEGER dwExStyle,;
STRING lpClassName,;
STRING lpWindowName,;
INTEGER dwStyle,;
INTEGER x,;
INTEGER y,;
INTEGER nWidth,;
INTEGER nHeight,;
INTEGER hWndParent,;
INTEGER hMenu,;
INTEGER hInstance,;
INTEGER lpParam
|
 |  |  | | Parameters: |  | dwExStyle
[in] Specifies the extended window style of the window being created
lpClassName
[in] Pointer to a null-terminated string or a class atom created by a previous call to the RegisterClass or RegisterClassEx function
lpWindowName
[in] Pointer to a null-terminated string that specifies the window name
dwStyle
[in] Specifies the style of the window being created
x, y
[in] Specifies the initial position of the window
nWidth, nHeight
[in] Specifies the width and the height, in device units, of the window
hWndParent
[in] Handle to the parent or owner window of the window being created
hMenu
[in] Handle to a menu, or specifies a child-window identifier, depending on the window style
hInstance
[in] Handle to the instance of the module to be associated with the window
lpParam
[in] Pointer to a value to be passed to the window |
 |  | | Return value: |  | | If the function succeeds, the return value is a handle to the new window |
 |  | | Usage: |  |
lnStyle = WS_CHILD + WS_BORDER + HDS_BUTTONS
lnStyleX = 0
lnId = VAL( SYS(3) )
lcWindowName = "hdr" + SYS(3)
hApp = GetWindowLong (_screen.HWnd, GWL_HINSTANCE)
hWindow = CreateWindow(lnStyleX, "SysHeader32",;
lcWindowName, lnStyle, 0,0,0,0,;
ThisForm.Hwnd, lnId, hApp, 0 )
|
 |  | | My comment: |  | | Through this function you can get a valid HWND and HDC (device context) values, which give you a great control over the created window. Comparing to this the windows, which you can create using the native DEFINE WINDOW, are "windowless" |
 |  | | Word Index links for the CreateWindowEx : |  | |
|
 |  | | Translate this page: |  | |  |  | | • |  | | Created: | 2001-07-18 12:00:00 | | Modified: | 2010-05-18 15:31:08 | Visited in last 7 days: 95 |
|
 |
 |
 |
 |
Copyright © 2001-2013
News2News, Inc.
Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use.
The information on this page is presented AS IS, meaning that you may use it at your own risk.
Microsoft Visual FoxPro
and Windows are trade marks
of Microsoft Corp.
All other trademarks are the property of their respective owners.
Privacy policy
|
 |
 |
 |
Credits: PHP (4.4.9), an HTML-embedded scripting language,
MySQL (5.1.55-log), the Open Source standard SQL database,
AceHTML Freeware
Version 4, freeware HTML Editor of choice. Hosted by Korax Online Inc. |
 |
 |
|
 |
 |
|
|