Colocando componentes
Como eu coloco componentes no meu programa em execução?
Anonymous
Curtidas 0
Respostas
Roberto Luiz
16/02/2003
Tente o seguinte:
Edt := TEdit.Create(Form1);
with Edt do
begin
Parent := Form1;
Left := 10;
Top := 25;
Width := Form1.ClientWidth -20;
end;
Espero poder ajudar. 8)
Edt := TEdit.Create(Form1);
with Edt do
begin
Parent := Form1;
Left := 10;
Top := 25;
Width := Form1.ClientWidth -20;
end;
Espero poder ajudar. 8)
GOSTEI 0
Roberto Luiz
16/02/2003
[quote:d9909f7251=´Roberto Luiz´]Tente o seguinte:
var edt : Tedit;
begin
Edt := TEdit.Create(Form1);
with Edt do
begin
Parent := Form1;
Left := 10;
Top := 25;
Width := Form1.ClientWidth -20;
end;
Espero poder ajudar. 8)[/quote:d9909f7251]
var edt : Tedit;
begin
Edt := TEdit.Create(Form1);
with Edt do
begin
Parent := Form1;
Left := 10;
Top := 25;
Width := Form1.ClientWidth -20;
end;
Espero poder ajudar. 8)[/quote:d9909f7251]
GOSTEI 0