Componentes.Terceros.DevExp.../official/x.30/ExpressSpreadSheet/Demos/Delphi/FlyingDemo/Flying.dpr
2007-12-16 17:06:54 +00:00

17 lines
322 B
ObjectPascal

program Flying;
{$R 'Default.res' 'Default.rc'}
uses
Forms,
FlyingMain in 'FlyingMain.pas' {FlyingMainForm},
FlyingSeatCalc in 'FlyingSeatCalc.pas' {FlyingSeatCalcForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TFlyingMainForm, FlyingMainForm);
Application.Run;
end.