DOCUMENT:Q159271 11-DEC-1999 [foxpro] TITLE :HOWTO: Set the BackColor Property to Same Color as Title Bar PRODUCT :Microsoft FoxPro PROD/VER:WINDOWS:3.0,3.0b,5.0,6.0 OPER/SYS: KEYWORDS:kbnokeyword kbvfp300 kbvfp500 kbvfp600 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 6.0 ------------------------------------------------------------------------------- SUMMARY ======= This article provides information on how to change the BackColor property of a shape object in Visual FoxPro to the same color as the form's active title bar. MORE INFORMATION ================ The following example creates a form that contains a shape. Code in the Click event of the command button changes the BackColor property of the shape from its default color to the color of the form's title bar. 1. Create a form 2. Place a shape object on the form. The name of this shape should be Shape1. 3. Add a command button to the form and place the following code in the Click event of the button: DECLARE INTEGER GetSysColor in User32.dll Integer Thisform.Shape1.BackColor=GetSysColor(2) ThisForm.Refresh 4. Run the form and press the command button. The backcolor of the shape changes to the same color as the forms title bar. The integer "2" in the GetSysColor() function points to the value of COLOR_ACTIVECAPTION from the Winuser.h file. The GetSysColor function is case sensitive; therefore, code must be entered exactly as shown above. The Winuser.h file is not a Visual FoxPro file. For more information on this file, consult Windows SDK literature. Information on the GetSysColor() function is available in the Win32 API Quick Reference help file that ships with Visual FoxPro 3.0 and 3.0b Professional versions. Additional query words: ====================================================================== Keywords : kbnokeyword kbvfp300 kbvfp500 kbvfp600 Technology : kbVFPsearch kbAudDeveloper kbVFP300 kbVFP300b kbVFP500 kbVFP600 Version : WINDOWS:3.0,3.0b,5.0,6.0 Issue type : kbhowto ============================================================================= 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.