home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap16 / linklst2 / main.dfm / main.txt
Encoding:
Text File  |  1995-03-21  |  2.7 KB  |  146 lines

  1. object DataForm: TDataForm
  2.   Left = 80
  3.   Top = 118
  4.   ActiveControl = Edit1
  5.   AutoScroll = False
  6.   Caption = 'DataForm'
  7.   ClientHeight = 217
  8.   ClientWidth = 484
  9.   Font.Color = clWindowText
  10.   Font.Height = -10
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   PixelsPerInch = 96
  15.   TextHeight = 16
  16.   object Label1: TLabel
  17.     Left = 24
  18.     Top = 40
  19.     Width = 44
  20.     Height = 16
  21.     Caption = 'Label1'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 24
  25.     Top = 80
  26.     Width = 44
  27.     Height = 16
  28.     Caption = 'Label2'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 24
  32.     Top = 120
  33.     Width = 44
  34.     Height = 16
  35.     Caption = 'Label3'
  36.   end
  37.   object Edit1: TEdit
  38.     Left = 88
  39.     Top = 40
  40.     Width = 329
  41.     Height = 29
  42.     TabOrder = 0
  43.     Text = 'Edit1'
  44.   end
  45.   object Edit2: TEdit
  46.     Left = 88
  47.     Top = 80
  48.     Width = 329
  49.     Height = 29
  50.     TabOrder = 1
  51.     Text = 'Edit2'
  52.   end
  53.   object Edit3: TEdit
  54.     Left = 88
  55.     Top = 120
  56.     Width = 329
  57.     Height = 29
  58.     TabOrder = 2
  59.     Text = 'Edit3'
  60.   end
  61.   object First: TButton
  62.     Left = 144
  63.     Top = 176
  64.     Width = 89
  65.     Height = 33
  66.     Caption = 'First'
  67.     TabOrder = 3
  68.     OnClick = FirstClick
  69.   end
  70.   object Next: TButton
  71.     Left = 248
  72.     Top = 176
  73.     Width = 89
  74.     Height = 33
  75.     Caption = 'Next'
  76.     TabOrder = 4
  77.     OnClick = NextClick
  78.   end
  79.   object Button1: TButton
  80.     Left = 40
  81.     Top = 176
  82.     Width = 89
  83.     Height = 33
  84.     Caption = 'Add'
  85.     TabOrder = 5
  86.     OnClick = Button1Click
  87.   end
  88.   object Last: TButton
  89.     Left = 352
  90.     Top = 176
  91.     Width = 89
  92.     Height = 33
  93.     Caption = 'Last'
  94.     TabOrder = 6
  95.     OnClick = LastClick
  96.   end
  97.   object MainMenu1: TMainMenu
  98.     object File1: TMenuItem
  99.       Caption = 'File'
  100.       object ReadData1: TMenuItem
  101.         Caption = 'Read Data'
  102.         OnClick = ReadData1Click
  103.       end
  104.       object N2: TMenuItem
  105.         Caption = '-'
  106.       end
  107.       object CreateList1: TMenuItem
  108.         Caption = 'Create New List'
  109.         OnClick = CreateList1Click
  110.       end
  111.       object N1: TMenuItem
  112.         Caption = '-'
  113.       end
  114.       object Save1: TMenuItem
  115.         Caption = 'Save'
  116.         OnClick = Save1Click
  117.       end
  118.       object Exit1: TMenuItem
  119.         Caption = 'Exit'
  120.       end
  121.     end
  122.     object Lists1: TMenuItem
  123.       Caption = 'Lists'
  124.       object Add1: TMenuItem
  125.         Caption = 'Add'
  126.       end
  127.       object Delete1: TMenuItem
  128.         Caption = 'Delete'
  129.         OnClick = Delete1Click
  130.       end
  131.       object Count1: TMenuItem
  132.         Caption = 'Count'
  133.         OnClick = Count1Click
  134.       end
  135.       object Find1: TMenuItem
  136.         Caption = 'Find'
  137.         OnClick = Find1Click
  138.       end
  139.     end
  140.     object Help1: TMenuItem
  141.       Caption = 'Help'
  142.       OnClick = Help
  143.     end
  144.   end
  145. end
  146.