DOCUMENT:Q83915 10-DEC-1999 [win16sdk] TITLE :NoTitle.exe - Adding and Removing Caption of a Window PRODUCT :Microsoft Windows Software Development Kit PROD/VER:WINDOWS:3.0,3.1 OPER/SYS: KEYWORDS:kbfile kbsample kb16bitonly kbGrpDSUser kbOSWin310 kbWndw kbWndwProp kbOSWin300 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Windows Software Development Kit (SDK) versions 3.0, 3.1 ------------------------------------------------------------------------------- SUMMARY ======= NoTitle.exe is a file in the Microsoft Software Library that demonstrates adding and removing the title (caption) of a window. MORE INFORMATION ================ The following file is available for download from the Microsoft Software Library: NoTitle.exe (http://support.microsoft.com/download/support/mslfiles/NoTitle.exe) For more information about downloading files from the Microsoft Software Library, please see the following article in the Microsoft Knowledge Base: Q119591 How to Obtain Microsoft Support Files from Online Services In the NoTitle.exe sample, when the window has a caption and the user selects NoTitle from the main menu, the caption is removed. When the user double- clicks the window without a caption by using the left mouse button, the caption is added to the window. NoTitle.exe removes the caption by performing the following five steps: 1. Removes the menu from the window by calling the SetMenu() function with NULL as the hMenu parameter. 2. Retrieves the current window style by calling GetWindowLong with GWL_STYLE as the nIndex parameter. 3. Removes the caption bit. 4. Calls SetWindowLong() with GWL_STYLE to change the style of the window. 5. Calls InvalidateRect() to instruct the application to redraw the window. NoTitle.exe places the caption on the window by performing the following five steps: 1. Adds the menu to the window by calling the SetMenu() function with the menu handle as the hMenu parameter. 2. Retrieves the current window style by calling GetWindowLong() with GWL_STYLE as the nIndex parameter. 3. Adds the caption bit. 4. Calls SetWindowLong() with GWL_STYLE to change the style of the window. 5. Calls InvalidateRect() to instruct the application to redraw the window. Additional query words: ====================================================================== Keywords : kbfile kbsample kb16bitonly kbGrpDSUser kbOSWin310 kbWndw kbWndwProp kbOSWin300 Technology : kbAudDeveloper kbWin3xSearch kbSDKSearch kbWinSDKSearch kbWinSDK300 kbWinSDK310 Version : WINDOWS:3.0,3.1 ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 1999.