Advertisement
Advertisement
| 04.04.2008 at 01:18AM PDT, ID: 23295295 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: |
// color change
procedure Tform1.shapeColorChange ();
var returnvalue: Byte;
f_bit: Byte;
s_bit: Byte;
t_bit: Byte;
fr_bit: Byte;
fi_bit: Byte;
six_bit: Byte;
sev_bit: Byte;
e_bit: Byte;
begin
f_bit := 1;
s_bit := 2;
t_bit := 4;
fr_bit := 8;
fi_bit := 16;
six_bit := 32;
sev_bit := 64;
e_bit := 128;
if buff[0] and f_bit = f_bit then
shape1.Brush.Color:=clYellow else shape1.Brush.Color:=clgray;
if buff[0] and s_bit = s_bit then
shape2.Brush.Color:=clYellow else shape2.Brush.Color:=clgray;
if buff[0] and t_bit = t_bit then
shape3.Brush.Color:=clYellow else shape3.Brush.Color:=clgray;
if buff[0] and fr_bit = fr_bit then
shape4.Brush.Color:=clYellow else shape4.Brush.Color:=clgray;
if buff[0] and fi_bit = fi_bit then
shape5.Brush.Color:=clYellow else shape5.Brush.Color:=clgray;
if buff[0] and six_bit = six_bit then
shape6.Brush.Color:=clYellow else shape6.Brush.Color:=clgray;
if buff[0] and sev_bit = sev_bit then
shape7.Brush.Color:=clYellow else shape7.Brush.Color:=clgray;
if buff[0] and e_bit = e_bit then
shape8.Brush.Color:=clYellow else shape8.Brush.Color:=clgray;
end;
|