home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kompon / d23456 / SMPLTIMR.ZIP / demos / SimpleTimerTest / Main.dfm / Main.txt
Text File  |  2002-10-20  |  3KB  |  145 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.     OnChange = Edit1Change
  52.   end
  53.   object UpDown1: TUpDown
  54.     Left = 53
  55.     Top = 24
  56.     Width = 16
  57.     Height = 21
  58.     Associate = Edit1
  59.     Min = 0
  60.     Max = 10000
  61.     Increment = 100
  62.     Position = 400
  63.     TabOrder = 1
  64.     Thousands = False
  65.     Wrap = False
  66.   end
  67.   object Button1: TButton
  68.     Left = 76
  69.     Top = 24
  70.     Width = 41
  71.     Height = 21
  72.     Caption = 'Start'
  73.     TabOrder = 2
  74.     OnClick = Button1Click
  75.   end
  76.   object Edit2: TEdit
  77.     Left = 8
  78.     Top = 72
  79.     Width = 45
  80.     Height = 21
  81.     TabOrder = 4
  82.     Text = '800'
  83.     OnChange = Edit2Change
  84.   end
  85.   object UpDown2: TUpDown
  86.     Left = 53
  87.     Top = 72
  88.     Width = 16
  89.     Height = 21
  90.     Associate = Edit2
  91.     Min = 0
  92.     Max = 10000
  93.     Increment = 100
  94.     Position = 800
  95.     TabOrder = 5
  96.     Thousands = False
  97.     Wrap = False
  98.   end
  99.   object Button2: TButton
  100.     Left = 76
  101.     Top = 72
  102.     Width = 41
  103.     Height = 21
  104.     Caption = 'Start'
  105.     TabOrder = 6
  106.     OnClick = Button2Click
  107.   end
  108.   object Button3: TButton
  109.     Left = 124
  110.     Top = 24
  111.     Width = 41
  112.     Height = 21
  113.     Caption = 'Stop'
  114.     TabOrder = 3
  115.     OnClick = Button3Click
  116.   end
  117.   object Button4: TButton
  118.     Left = 124
  119.     Top = 72
  120.     Width = 41
  121.     Height = 21
  122.     Caption = 'Stop'
  123.     TabOrder = 7
  124.     OnClick = Button4Click
  125.   end
  126.   object Button5: TButton
  127.     Left = 180
  128.     Top = 104
  129.     Width = 75
  130.     Height = 25
  131.     Caption = '&Clear'
  132.     TabOrder = 9
  133.     OnClick = Button5Click
  134.   end
  135.   object Button6: TButton
  136.     Left = 180
  137.     Top = 252
  138.     Width = 75
  139.     Height = 25
  140.     Caption = 'E&xit'
  141.     TabOrder = 10
  142.     OnClick = Button6Click
  143.   end
  144. end
  145.