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

  1. object MainForm: TMainForm
  2.   Left = 362
  3.   Top = 260
  4.   BorderStyle = bsDialog
  5.   Caption = 'SimpleTimer 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.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 35
  24.     Height = 13
  25.     Caption = 'Timer 1'
  26.   end
  27.   object Label2: TLabel
  28.     Left = 8
  29.     Top = 56
  30.     Width = 35
  31.     Height = 13
  32.     Caption = 'Timer 2'
  33.   end
  34.   object ListBox1: TListBox
  35.     Left = 8
  36.     Top = 104
  37.     Width = 157
  38.     Height = 173
  39.     ExtendedSelect = False
  40.     IntegralHeight = True
  41.     ItemHeight = 13
  42.     TabOrder = 8
  43.   end
  44.   object Edit1: TEdit
  45.     Left = 8
  46.     Top = 24
  47.     Width = 45
  48.     Height = 21
  49.     TabOrder = 0
  50.     Text = '400'
  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.   end
  83.   object UpDown2: TUpDown
  84.     Left = 53
  85.     Top = 72
  86.     Width = 16
  87.     Height = 21
  88.     Associate = Edit2
  89.     Min = 0
  90.     Max = 10000
  91.     Increment = 100
  92.     Position = 800
  93.     TabOrder = 5
  94.     Thousands = False
  95.     Wrap = False
  96.   end
  97.   object Button2: TButton
  98.     Left = 76
  99.     Top = 72
  100.     Width = 41
  101.     Height = 21
  102.     Caption = 'Start'
  103.     TabOrder = 6
  104.     OnClick = Button2Click
  105.   end
  106.   object Button3: TButton
  107.     Left = 124
  108.     Top = 24
  109.     Width = 41
  110.     Height = 21
  111.     Caption = 'Stop'
  112.     TabOrder = 3
  113.     OnClick = Button3Click
  114.   end
  115.   object Button4: TButton
  116.     Left = 124
  117.     Top = 72
  118.     Width = 41
  119.     Height = 21
  120.     Caption = 'Stop'
  121.     TabOrder = 7
  122.     OnClick = Button4Click
  123.   end
  124.   object Button5: TButton
  125.     Left = 180
  126.     Top = 104
  127.     Width = 75
  128.     Height = 25
  129.     Caption = '&Clear'
  130.     TabOrder = 9
  131.     OnClick = Button5Click
  132.   end
  133.   object Button6: TButton
  134.     Left = 180
  135.     Top = 252
  136.     Width = 75
  137.     Height = 25
  138.     Caption = 'E&xit'
  139.     TabOrder = 10
  140.     OnClick = Button6Click
  141.   end
  142. end
  143.