LABEL !

Excellent !!!

Will use these for mine too ...

By the way,sidenote for kixforms and RGB colors I heard from Shawn :

KiXforms reverses RGB colors to GGRRBB (just like VB, right ?) ... So if you want to take these color values outside kixforms (just as I do in PostPrep) you have to convert it first to HEX and then a bit string manipulation like

code:
$KColor = "FF0000" ;blue
$HTMLColor = right($KColor,2) + substr($KColor,3,2) + left($KColor,2)

results in '0000FF' (Blue)

[Big Grin]
_________________________