Ver Mensaje Individual
  #6  
Antiguo 12-02-2004
__cadetill __cadetill is offline
Miembro
 
Registrado: may 2003
Posts: 3.387
Reputación: 27
__cadetill Va por buen camino
Prueba con esto a ver....

Código:
implementation

uses
  Unit2; // o como la hayas llamado

{$R *.dfm}

procedure TForm1.crear_expoClick(Sender: TObject);
begin
  Form2 := TForm2.Create(Self);
  try
    Form2.ShowModal;
  finally
    Form2.Free;
  end;
end;
Responder Con Cita