Hello everyone
I would like to know if there is better a way to set the background color except the way I did it :
-- Set background color
Color = Registry.GetValue(HKEY_CURRENT_USER, "Control Panel\\Colors", "ButtonFace", true);
sLength = String.Length(Color);
FirstPos = String.Find(Color, " ", 1, true);
Red = String.Left(Color, FirstPos-1);
SecondPos = String.Find(Color, " ", FirstPos+1, true);
Blue = String.Right(Color, sLength-SecondPos);
Left = String.Left(Color, SecondPos-1);
Green = String.Right(Left, FirstPos-1);
Decimal = Red+(Green*256)+(Blue*65536)
Shape.SetFillColor("Plugin1", Decimal);


