
02.06.2011, 22:03
|
Активный
|
|
Регистрация: 20.02.2011
Сообщения: 374
Репутация: 744
|
|
думаю так
Код:
var i:Integer;
begin
for i:=6 to 10 do
begin
TEDit(FindComponent('Edit' + inttostr(i))).visible:=false;
TComboBox(FindComponent('ComboBox' + inttostr(i))).visible:=false;
end;
end;
|