//clWebSnow = $FAFAFF; defined in Graphics.pas
Listbox1.Items.Add( ColorToString( clRed ) );
Listbox1.Items.Add( ColorToString( clWebSnow ) );
How can you return "WebSnow" as a string to show the color as a color constant as WebSnow?
All i can seem to get is '$FAFAFF' as a string with webcolors stored as a string while the StandardColors and ExtendedColors return the color constant values.
Example: clRed displays as Red in the listbox and displays as Red in the Label caption. clWebSnow displays as '$FAFAFF' in the listbox and displays as $FAFAFF in the label caption.
Bill