Hello again,
is it possible to make a procedure with this:
procedure TForm1.Button1Click(Sender: TObject);
begin
EditBox1.enabled := FALSE:
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
EditBox2.enabled := FALSE:
end
procedure TForm1.Button3Click(Sender: TObject);
begin
EditBox3.enabled := FALSE:
end
[.. and so on..]
Is is possible to use a procedure that would say :
procedure Button(i).click;
begin
EditBox(i).enabled := FALSE;
end;
thx
is it possible to make a procedure with this:
procedure TForm1.Button1Click(Sender: TObject);
begin
EditBox1.enabled := FALSE:
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
EditBox2.enabled := FALSE:
end
procedure TForm1.Button3Click(Sender: TObject);
begin
EditBox3.enabled := FALSE:
end
[.. and so on..]
Is is possible to use a procedure that would say :
procedure Button(i).click;
begin
EditBox(i).enabled := FALSE;
end;
thx