Iは、フォームに記入空にするためにこのコードを使用する:安全な決済コンポーネントですか?
var
i: integer;
for i:=0 to componentcounts-1 do
begin
if component[i] is TEdit then
(component[i] as Tedit).text:='';
.....another component also include
end;
しかし、それは別の形で使用することができるので、私はプロシージャを作成
その後、フォームの外側にこのコードを使用することを好む
procedure emptyForm(f:Tform)
var
i:integer;
begin
with f do
begin
for i:=0 to componentcounts-1 do
begin
if component[i] is TEdit then
(component[i] as Tedit).text:='';
//.....another component also include
end;
end;
end;
このように保存しますか?
あなたは '安全'を意味しましたか?また、 'componentcounts'? - あなたの質問を編集し、実際のコードを使用してください。 – kobik
コンパイルされないプログラムは実行できないという点では十分安全です。実際のプログラムを見るのはもっと面白いかもしれません。 –
申し訳ありません@kobik、ありがとうDavid Heffernan –