Setupin.pas
上传用户:sipnol
上传日期:2013-03-16
资源大小:318k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. unit Setupin;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, ExtCtrls, Buttons, Spin,Define;
  6. type
  7.   TsetupForm = class(TForm)
  8.     Panel1: TPanel;
  9.     Label1: TLabel;
  10.     BitBtn1: TBitBtn;
  11.     BitBtn2: TBitBtn;
  12.     GroupBox1: TGroupBox;
  13.     SEMaxLoad: TSpinEdit;
  14.     SEPersonNum: TSpinEdit;
  15.     SEOntime: TSpinEdit;
  16.     SEElavotorSpeed: TSpinEdit;
  17.     SEUpDownTime: TSpinEdit;
  18.     Label2: TLabel;
  19.     Label3: TLabel;
  20.     Label4: TLabel;
  21.     Label5: TLabel;
  22.     Label6: TLabel;
  23.     Label7: TLabel;
  24.     Label8: TLabel;
  25.     Label9: TLabel;
  26.     Label10: TLabel;
  27.     Label11: TLabel;
  28.     Label12: TLabel;
  29.     SETakeNum: TSpinEdit;
  30.     Label13: TLabel;
  31.     procedure BitBtn2Click(Sender: TObject);
  32.     procedure BitBtn1Click(Sender: TObject);
  33.   private
  34.     { Private declarations }
  35.   public
  36.     { Public declarations }
  37.   end;
  38. var
  39.   setupForm: TsetupForm;
  40. implementation
  41. uses main;
  42. {$R *.DFM}
  43. procedure TsetupForm.BitBtn2Click(Sender: TObject);
  44. begin
  45.     Application.Terminate;
  46. end;
  47. procedure TsetupForm.BitBtn1Click(Sender: TObject);
  48. begin
  49.    Maxload:=SEMaxload.Value;             //电梯最大乘客量
  50.    PersonNum:=SEPersonNum.Value;         //参与仿真人数
  51.    Ontime:=SEOntime.Value;               //人员到齐时间
  52.    ElavotorSpeed:=SEElavotorSpeed.Value; //电梯运行速度
  53.    UpDownTime:=SEUpDownTime.value;       //上下电梯时间
  54.    TakeNum:=SETakeNum.Value;             //乘做电梯次数
  55.    self.hide;
  56. end;
  57. end.