home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kompon / d23456 / SMPLTIMR.ZIP / demos / TTimerTest / Main.dfm / Main.txt
Text File  |  2002-10-20  |  3KB  |  156 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.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 8
  22.     Width = 35
  23.     Height = 13
  24.     Caption = 'Timer 1'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 8
  28.     Top = 56
  29.     Width = 35
  30.     Height = 13
  31.     Caption = 'Timer 2'
  32.   end
  33.   object ListBox1: TListBox
  34.     Left = 8
  35.     Top = 104
  36.     Width = 157
  37.     Height = 173
  38.     ExtendedSelect = False
  39.     IntegralHeight = True
  40.     ItemHeight = 13
  41.     TabOrder = 8
  42.   end
  43.   object Edit1: TEdit
  44.     Left = 8
  45.     Top = 24
  46.     Width = 45
  47.     Height = 21
  48.     TabOrder = 0
  49.     Text = '400'
  50.     OnChange = Edit1Change
  51.   end
  52.   object UpDown1: TUpDown
  53.     Left = 53
  54.     Top = 24
  55.     Width = 16
  56.     Height = 21
  57.     Associate = Edit1
  58.     Min = 0
  59.     Max = 10000
  60.     Increment = 100
  61.     Position = 400
  62.     TabOrder = 1
  63.     Thousands = False
  64.     Wrap = False
  65.   end
  66.   object Button1: TButton
  67.     Left = 76
  68.     Top = 24
  69.     Width = 41
  70.     Height = 21
  71.     Caption = 'Start'
  72.     TabOrder = 2
  73.     OnClick = Button1Click
  74.   end
  75.   object Edit2: TEdit
  76.     Left = 8
  77.     Top = 72
  78.     Width = 45
  79.     Height = 21
  80.     TabOrder = 4
  81.     Text = '800'
  82.     OnChange = Edit2Change
  83.   end
  84.   object UpDown2: TUpDown
  85.     Left = 53
  86.     Top = 72
  87.     Width = 16
  88.     Height = 21
  89.     Associate = Edit2
  90.     Min = 0
  91.     Max = 10000
  92.     Increment = 100
  93.     Position = 800
  94.     TabOrder = 5
  95.     Thousands = False
  96.     Wrap = False
  97.   end
  98.   object Button2: TButton
  99.     Left = 76
  100.     Top = 72
  101.     Width = 41
  102.     Height = 21
  103.     Caption = 'Start'
  104.     TabOrder = 6
  105.     OnClick = Button2Click
  106.   end
  107.   object Button3: TButton
  108.     Left = 124
  109.     Top = 24
  110.     Width = 41
  111.     Height = 21
  112.     Caption = 'Stop'
  113.     TabOrder = 3
  114.     OnClick = Button3Click
  115.   end
  116.   object Button4: TButton
  117.     Left = 124
  118.     Top = 72
  119.     Width = 41
  120.     Height = 21
  121.     Caption = 'Stop'
  122.     TabOrder = 7
  123.     OnClick = Button4Click
  124.   end
  125.   object Button5: TButton
  126.     Left = 180
  127.     Top = 104
  128.     Width = 75
  129.     Height = 25
  130.     Caption = '&Clear'
  131.     TabOrder = 9
  132.     OnClick = Button5Click
  133.   end
  134.   object Button6: TButton
  135.     Left = 180
  136.     Top = 252
  137.     Width = 75
  138.     Height = 25
  139.     Caption = 'E&xit'
  140.     TabOrder = 10
  141.     OnClick = Button6Click
  142.   end
  143.   object Timer1: TTimer
  144.     Enabled = False
  145.     OnTimer = Timer1Timer
  146.     Left = 184
  147.     Top = 20
  148.   end
  149.   object Timer2: TTimer
  150.     Enabled = False
  151.     OnTimer = Timer2Timer
  152.     Left = 184
  153.     Top = 68
  154.   end
  155. end
  156.