Tuesday, April 07, 2009

dynamic create a object in delphi

with TEdit.Create(Self) do
begin
Parent := Self;
Text := 'Hello';
Width := 200;
Top := 100;
Left := 100;
end

No comments:

Post a Comment