|
Window Creation
An application creates its windows (including the main window) by using the CreateWindow or CreateWindowEx function and providing the information Windows requires to define the
attributes of the window. CreateWindowEx has a parameter, dwExStyle, that CreateWindow does not have; otherwise, the functions are identical. In fact, CreateWindow simply calls CreateWindowEx, setting the dwExStyle parameter to zero. For this reason, the remainder of this overview refers
only to CreateWindowEx.
The Win32 API provides additional functions including DialogBox, CreateDialog, and MessageBox for creating special-purpose windows such as dialog boxes and message boxes.
For more information about these functions, see Dialog Boxes.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|