home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap11 / addall / main.dfm / main.txt < prev   
Encoding:
Text File  |  1995-03-21  |  2.3 KB  |  127 lines

  1. object Form1: TForm1
  2.   Left = 123
  3.   Top = 75
  4.   ActiveControl = Edit1
  5.   AutoScroll = False
  6.   Caption = 'Add A Column of Numbers'
  7.   ClientHeight = 244
  8.   ClientWidth = 428
  9.   Color = clSilver
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'System'
  13.   Font.Style = []
  14.   Icon.Data = {<image000.ico>}
  15.   PixelsPerInch = 96
  16.   OnCreate = FormCreate
  17.   TextHeight = 16
  18.   object Label2: TLabel
  19.     Left = 16
  20.     Top = 16
  21.     Width = 98
  22.     Height = 28
  23.     AutoSize = False
  24.     Caption = 'Add To List'
  25.   end
  26.   object Label1: TLabel
  27.     Left = 16
  28.     Top = 80
  29.     Width = 98
  30.     Height = 17
  31.     AutoSize = False
  32.     Caption = 'Answer:'
  33.   end
  34.   object ListBox1: TListBox
  35.     Left = 240
  36.     Top = 16
  37.     Width = 180
  38.     Height = 218
  39.     Color = clBlue
  40.     Font.Color = clYellow
  41.     Font.Height = -13
  42.     Font.Name = 'System'
  43.     Font.Style = [fsBold]
  44.     ItemHeight = 16
  45.     ParentFont = False
  46.     TabOrder = 5
  47.     OnDblClick = ListBox1DblClick
  48.   end
  49.   object Edit1: TEdit
  50.     Left = 128
  51.     Top = 16
  52.     Width = 100
  53.     Height = 33
  54.     Color = clBlue
  55.     Ctl3D = True
  56.     Font.Color = clYellow
  57.     Font.Height = -13
  58.     Font.Name = 'System'
  59.     Font.Style = [fsBold]
  60.     ParentCtl3D = False
  61.     ParentFont = False
  62.     TabOrder = 0
  63.     Text = 'Edit1'
  64.   end
  65.   object BPut: TButton
  66.     Left = 8
  67.     Top = 136
  68.     Width = 98
  69.     Height = 38
  70.     Caption = '&Put'
  71.     Default = True
  72.     TabOrder = 1
  73.     OnClick = BPutClick
  74.   end
  75.   object BCalc: TButton
  76.     Left = 128
  77.     Top = 136
  78.     Width = 98
  79.     Height = 38
  80.     Caption = '&Calc'
  81.     TabOrder = 2
  82.     OnClick = BCalcClick
  83.   end
  84.   object BClose: TButton
  85.     Left = 8
  86.     Top = 192
  87.     Width = 98
  88.     Height = 38
  89.     Caption = 'Clos&e'
  90.     TabOrder = 3
  91.     OnClick = BCloseClick
  92.   end
  93.   object BClear: TButton
  94.     Left = 128
  95.     Top = 192
  96.     Width = 98
  97.     Height = 38
  98.     Caption = 'C&lear'
  99.     TabOrder = 4
  100.     OnClick = BClearClick
  101.   end
  102.   object Panel1: TPanel
  103.     Left = 128
  104.     Top = 72
  105.     Width = 105
  106.     Height = 33
  107.     Caption = 'Panel1'
  108.     Color = clBlue
  109.     TabOrder = 6
  110.     object LResult: TLabel
  111.       Left = 5
  112.       Top = 5
  113.       Width = 93
  114.       Height = 23
  115.       AutoSize = False
  116.       Caption = 'LResult'
  117.       Color = clBlue
  118.       Font.Color = clYellow
  119.       Font.Height = -13
  120.       Font.Name = 'System'
  121.       Font.Style = [fsBold]
  122.       ParentColor = False
  123.       ParentFont = False
  124.     end
  125.   end
  126. end
  127.