Вниз
Скачать: CL | DM;

Ошибка   Найти похожие ветки 

 
jenbbond   (2002-05-25 10:12) [0]

n:=0;
for i:=0 to ComponentCount-1 do
if Components[i] is TBitBtnWithColor then
if n=1 then
TBitBtnWithColor(Components[i]).Color:=clRed;
if n=0 then
TBitBtnWithColor(Components[i]).Color:=clGreen;

Пытаюсь выполнить код , но при выполнении вылетает ошибка
Project1.exe raised exception class EListError whit message "List index out of bounds(18)".

Подскажите в чем проблема млжет быть!!!


 
Виктор Щербаков ©   (2002-05-25 10:24) [1]

Переменная i используется сразу после цикла:
TBitBtnWithColor(Components[i]).Color:=clGreen;
Её значение не определено.


 
Внук ©   (2002-05-25 11:02) [2]

Наверное, так:
n:=0;
for i:=0 to ComponentCount-1 do
if Components[i] is TBitBtnWithColor then
if n=1 then TBitBtnWithColor(Components[i]).Color:=clRed
else
if n=0 then TBitBtnWithColor(Components[i]).Color:=clGreen;



 
Anatoly Podgoretsky ©   (2002-05-25 11:18) [3]

Если это именно то, что он хочет сделать, то вместо IF
case N of
0: TBitBtnWithColor(Components[i]).Color:=clGreen;
1: TBitBtnWithColor(Components[i]).Color:=clRed;
end;



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.009 c
3-17805
ev1972
2002-05-15 10:45
2002.06.06
BatchInput в FIBPlus


1-17955
Fareader
2002-05-28 11:36
2002.06.06
Цвета RX Library


6-18088
Quadro
2002-03-25 12:29
2002.06.06
Smart Whois


3-17791
studentik
2002-05-15 22:57
2002.06.06
Ищу наследника ComboBox`а


1-17851
Maxr
2002-05-24 14:58
2002.06.06
Не запускаются программы вне IDE в Kylix




   Наверх