Показать сообщение отдельно
  #3  
Старый 23.09.2008, 21:19
Аватар для Vayrus
Vayrus Vayrus вне форума
Исполняемый Ретровирус
 
Регистрация: 09.08.2008
Адрес: Umbrella Corporation
Сообщения: 743
Репутация: 1293
Восклицание

Код:
procedure ChangeValues;
var
I : Integer;
begin
with Form1 do
begin
for I := 0 to ComponentCount - 1 do
begin
if (Components[i] is TEdit) then
begin
if I in [6..19] then
(Components[i] as TEdit).Text := '0,00';
end;
Application.ProcessMessages;
end;
end;
end;
Ответить с цитированием