The CreateStatusWindow function creates a status window, which is typically used to display the status of an application. The window generally appears at the bottom of the parent window, and it contains the specified text.
HWND CreateStatusWindow(
LONG style, | |
LPCTSTR lpszText, | |
HWND hwndParent, | |
UINT wID | |
); |
If the function succeeds, the return value is the handle for the status window.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
The CreateStatusWindow function calls the CreateWindow function to create the window. It passes the parameters to CreateWindow without modification and sets the position, width, and height parameters to default values.
Windows 95: The system can support a maximum of 16,364 window handles.
Questions: