home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 December / Chip_2002-12_cd1.bin / zkuste / delphi / kompon / d23456 / SMPLTIMR.ZIP / TTimerTest / Main.dfm / Main.txt
Encoding:
Text File  |  2002-04-13  |  2.6 KB  |  153 lines

  1. object MainForm: TMainForm
  2.   Left = 362
  3.   Top = 260
  4.   BorderStyle = bsDialog
  5.   Caption = 'TTimer Test'
  6.   ClientHeight = 287
  7.   ClientWidth = 265
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 35
  22.     Height = 13
  23.     Caption = 'Timer 1'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 8
  27.     Top = 56
  28.     Width = 35
  29.     Height = 13
  30.     Caption = 'Timer 2'
  31.   end
  32.   object ListBox1: TListBox
  33.     Left = 8
  34.     Top = 104
  35.     Width = 157
  36.     Height = 173
  37.     ExtendedSelect = False
  38.     IntegralHeight = True
  39.     ItemHeight = 13
  40.     TabOrder = 8
  41.   end
  42.   object Edit1: TEdit
  43.     Left = 8
  44.     Top = 24
  45.     Width = 45
  46.     Height = 21
  47.     TabOrder = 0
  48.     Text = '400'
  49.   end
  50.   object UpDown1: TUpDown
  51.     Left = 53
  52.     Top = 24
  53.     Width = 16
  54.     Height = 21
  55.     Associate = Edit1
  56.     Min = 0
  57.     Max = 10000
  58.     Increment = 100
  59.     Position = 400
  60.     TabOrder = 1
  61.     Thousands = False
  62.     Wrap = False
  63.   end
  64.   object Button1: TButton
  65.     Left = 76
  66.     Top = 24
  67.     Width = 41
  68.     Height = 21
  69.     Caption = 'Start'
  70.     TabOrder = 2
  71.     OnClick = Button1Click
  72.   end
  73.   object Edit2: TEdit
  74.     Left = 8
  75.     Top = 72
  76.     Width = 45
  77.     Height = 21
  78.     TabOrder = 4
  79.     Text = '800'
  80.   end
  81.   object UpDown2: TUpDown
  82.     Left = 53
  83.     Top = 72
  84.     Width = 16
  85.     Height = 21
  86.     Associate = Edit2
  87.     Min = 0
  88.     Max = 10000
  89.     Increment = 100
  90.     Position = 800
  91.     TabOrder = 5
  92.     Thousands = False
  93.     Wrap = False
  94.   end
  95.   object Button2: TButton
  96.     Left = 76
  97.     Top = 72
  98.     Width = 41
  99.     Height = 21
  100.     Caption = 'Start'
  101.     TabOrder = 6
  102.     OnClick = Button2Click
  103.   end
  104.   object Button3: TButton
  105.     Left = 124
  106.     Top = 24
  107.     Width = 41
  108.     Height = 21
  109.     Caption = 'Stop'
  110.     TabOrder = 3
  111.     OnClick = Button3Click
  112.   end
  113.   object Button4: TButton
  114.     Left = 124
  115.     Top = 72
  116.     Width = 41
  117.     Height = 21
  118.     Caption = 'Stop'
  119.     TabOrder = 7
  120.     OnClick = Button4Click
  121.   end
  122.   object Button5: TButton
  123.     Left = 180
  124.     Top = 104
  125.     Width = 75
  126.     Height = 25
  127.     Caption = '&Clear'
  128.     TabOrder = 9
  129.     OnClick = Button5Click
  130.   end
  131.   object Button6: TButton
  132.     Left = 180
  133.     Top = 252
  134.     Width = 75
  135.     Height = 25
  136.     Caption = 'E&xit'
  137.     TabOrder = 10
  138.     OnClick = Button6Click
  139.   end
  140.   object Timer1: TTimer
  141.     Enabled = False
  142.     OnTimer = Timer1Timer
  143.     Left = 184
  144.     Top = 20
  145.   end
  146.   object Timer2: TTimer
  147.     Enabled = False
  148.     OnTimer = Timer2Timer
  149.     Left = 184
  150.     Top = 68
  151.   end
  152. end
  153.