Net_Params.dpr 277 B

123456789101112131415
  1. program Net_Params;
  2. uses
  3. Forms,
  4. MainUnit in 'MainUnit.pas' {frmParams},
  5. CfgParams in 'CfgParams.pas';
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.Title := '¶àÓû§ÍøÂç°æ(SmartCost)';
  10. Application.CreateForm(TfrmParams, frmParams);
  11. Application.Run;
  12. end.