Componentes.Terceros.DevExp.../official/x.38/ExpressSpreadSheet/Demos/Delphi/FlyingDemo/Flying.dpr
2008-08-27 11:56:15 +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.