[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
CreateWindow( cClassName, cTitle, nStyle, nLeft, nTop,;
nWidth, nHeight, hWndOwner, hMenu, cExtraData ) -> <hWnd>
------------------------------------------------------------------------------
PARAMETER:
<cClassName> This is the API name of the window class. It is not related
to the FiveWin OOP class, but to windows own identification
<cTitle> Is the title or the caption of the window
<nStyle> Specifies the style of the window being created
<nLeft>, The coordinates and dimensions of the window
<nTop>
<nWidth>,
<nHeight>
<hWndOwner> The handle of the window owner (if any) of the new
window.
<hMenu> The handle of the windows system PullDown menu.
<cExtraData> Some extra data that is sometimes required.
RETURNS:
<hWnd> This is the handle of our just created window.
DESCRIPTION:
CreateWindow() function creates an overlapped, pop-up, or child window.
The function specifies the window class, window title, window style, and
(optionally) the initial position and size of the window.
The CreateWindow function also specifies the window's parent (if any),
and menu. If the window style specifies a title bar, the window title
pointed to by the cTitle parameter is displayed in the title bar.
CreateWindow() is also used to create controls such as buttons, check
boxes and edit controls.
This function is used internally by FiveWin, and there should be no need
for you to use it directly.
SOURCE:
SOURCE\WINAPI\CREATEWN.C
See Also:
RegisterClass
DEFINE WINDOW
GetClassName
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson