Ver Mensaje Individual
  #3  
Antiguo 16-07-2003
nemo nemo is offline
Registrado
 
Registrado: jul 2003
Posts: 6
Reputación: 0
nemo Va por buen camino
Gracias por tu ayuda; tu consejo funcionó a la perfección, no obstante encontré una solución alternativa:

function TPersona.GetData: boolean;
var
Ventana: TForm;
edt_Name: TEdit;
btn_OK: TButton;
begin
Ventana:=TForm.Create(Self);
edt_Name:=TEdit.Create(nil);
edt_Name.Parent:=Ventana;
btn_OK:=TButton.Create(nil);

with btn_OK do
begin
Left := 56;
Top := 16;
Width := 75;
Height := 25;
Caption := 'Pulse Aqui';
TabOrder := 0;
Parent :=Ventana;
end;

Ventana.ShowModal;
Execute:=True;
end;

Otra vez: Muchas Gracias!
Responder Con Cita