small function to make colours a bit easier to work with :
PROCEDURE RGB(R : Integer;G : Integer;B : Integer) : Integer;
BEGIN
IF R > 255 THEN R := 255 ;
IF G > 255 THEN G := 255 ;
IF B > 255 THEN b := 255 ;
EXIT( R + (G * 256) + (B * 256 * 256)) ;
END;
this way you can just give the RGB values for the colour you want, like 255,0,0 for red, or 0,128,0 for a darkgreen colour
Comments
http://www.mibuso.com/forum/viewtopic.php?t=4697
and try something like in Merge Setup form(as shown in below screen)
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Result in image :
I'm not satisfied with result b'cose when I expand the Color Column and see the Result :
I will be very grateful if someone helps me to solve this issue.
Thnaks!
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
I Hope it can be done.
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Code :
Result :
You can show any text like 'Color' also in template..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
this way you can just give the RGB values for the colour you want, like 255,0,0 for red, or 0,128,0 for a darkgreen colour
(I didnt have 2009 Vesrion to test now )
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav