DOCUMENT:Q190553 07-AUG-1998 [vbwin] TITLE :INFO: Do Not Use VB Color Constants in DHTML Page Designer PRODUCT :Microsoft Visual Basic for Windows PROD/VER: OPER/SYS:WINDOWS KEYWORDS: ====================================================================== --------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 6.0 --------------------------------------------------------------------- SUMMARY ======= Internet Explorer and Visual Basic use different formats for Color literals. Internet Explorer's Object model uses a format of RRGGBB whereas Visual Basic uses the format BBGGRR. When attempting to chance colors of Dynamic HTML elements in your DHTML Page Designer project, use the RRGGBB format. Do not use Visual Basic color constants such as vbRed and vbBlue. MORE INFORMATION ================ You will not be able to use Visual Basic's constants vbRed and vbBlue when programming for the Internet Explorer's object model. Following are examples of problems you will see when writing code in Visual Basic 6.0 DHTML Page Designer object using these constants: field1.style.color=vbRed 'Will cause the text to be Blue field1.style.color=vbBlue 'Will cause the text to be Red field1.style.color=vbGreen 'Will cause the text to be Green You will not be able to use the RGB function such as Hex(RGB(0, 0, 255)) to specify colors for Dynamic HTML elements. To change the color of the Dynamic HTML elements in your DHTML Page Designer project, use the RRGGBB (where R=Red, G=Green, and B=Blue) color constants. The same applies to creating color constants for use in WebClasses in Visual Basic 6.0 IIS Applications. Use the RRGGBB format color constants. Additional query words: kbdsi kbDSupport kbVBp kbVBp600 kbInternet kbWebClasses kbPageDesigner ====================================================================== Platform : WINDOWS Issue type : kbinfo ============================================================================= 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 1998.