Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Converting integer color code into HTML color code
Message
De
26/07/2001 10:06:18
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00535531
Message ID:
00535652
Vues:
11
Thanks David - that did the trick!

>David,
>
>HTML color codes are stored RGB. In VFP the color code is stored RBG in the integer value returned by GetColor(). The easiest thoing to do is use RGBComp() to decompose the value:
>
>lnVFPColor = getcolor()
>store 0 to lnRed, lnBlue, lnGreen
>set library to foxtools additive
>RGBComp( lnVFPColor, @lnRed, @lnGreen, @lnBlue )
>
>lcHTMLColor = "#" + right( transform( lnRed, "@0" ), 2 ) + right( transform( lnGreen, "@0" ), 2 ) + right( transform( lnBlue, "@0" ), 2 )
>
>>I need to convert an integer color code into an HTML color code.
>>
>>For example, if a user is prompted to select a color with getcolor(), and they choose red, the integer value returned is 255. In order to display the color red in HTML text, I need to either use 'font color="#FF0000"' or 'font color="red"'. How do I derive that "#FF0000" value from 255, or from any other valid color integer?
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform