program VariasTelas;

uses
  Vcl.Forms,
  U_tela1 in 'U_tela1.pas' {F_Tela1},
  U_tela2 in 'U_tela2.pas' {F_tela2};

{$R *.res}

begin
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  Application.CreateForm(TF_Tela1, F_Tela1);
  Application.CreateForm(TF_tela2, F_tela2);
  Application.Run;
end.
