home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap20 / dsevents / main.txt < prev   
Encoding:
Text File  |  1995-03-21  |  3.8 KB  |  207 lines

  1. object Form1: TForm1
  2.   Left = 191
  3.   Top = 101
  4.   Width = 402
  5.   Height = 317
  6.   HorzScrollBar.Range = 385
  7.   HorzScrollBar.Visible = False
  8.   VertScrollBar.Range = 313
  9.   VertScrollBar.Visible = False
  10.   ActiveControl = Edit1
  11.   AutoScroll = False
  12.   BorderStyle = bsDialog
  13.   Caption = 'Poor Man'#39's Edit Control'
  14.   PixelsPerInch = 96
  15.   OnCreate = FormCreate
  16.   object Label1: TLabel
  17.     Left = 72
  18.     Top = 8
  19.     Width = 38
  20.     Height = 16
  21.     Caption = 'Name'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 64
  25.     Top = 40
  26.     Width = 45
  27.     Height = 16
  28.     Caption = 'Capital'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 48
  32.     Top = 72
  33.     Width = 61
  34.     Height = 16
  35.     Caption = 'Continent'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 80
  39.     Top = 104
  40.     Width = 29
  41.     Height = 16
  42.     Caption = 'Area'
  43.   end
  44.   object Label5: TLabel
  45.     Left = 40
  46.     Top = 136
  47.     Width = 69
  48.     Height = 16
  49.     Caption = 'Population'
  50.   end
  51.   object Edit1: TEdit
  52.     Left = 120
  53.     Top = 8
  54.     Width = 241
  55.     Height = 24
  56.     TabOrder = 0
  57.     Text = 'Edit1'
  58.     OnKeyDown = Edit1KeyDown
  59.   end
  60.   object Edit2: TEdit
  61.     Left = 120
  62.     Top = 40
  63.     Width = 241
  64.     Height = 24
  65.     TabOrder = 1
  66.     Text = 'Edit2'
  67.     OnKeyDown = Edit1KeyDown
  68.   end
  69.   object Edit3: TEdit
  70.     Left = 120
  71.     Top = 72
  72.     Width = 241
  73.     Height = 24
  74.     TabOrder = 2
  75.     Text = 'Edit3'
  76.     OnKeyDown = Edit1KeyDown
  77.   end
  78.   object Edit4: TEdit
  79.     Left = 120
  80.     Top = 104
  81.     Width = 241
  82.     Height = 24
  83.     TabOrder = 3
  84.     Text = 'Edit4'
  85.     OnKeyDown = Edit1KeyDown
  86.   end
  87.   object Edit: TButton
  88.     Left = 104
  89.     Top = 224
  90.     Width = 89
  91.     Height = 33
  92.     HelpContext = 5
  93.     TabOrder = 10
  94.     Caption = 'Edit'
  95.     OnClick = AnyButtonClick
  96.   end
  97.   object Insert: TButton
  98.     Left = 8
  99.     Top = 224
  100.     Width = 89
  101.     Height = 33
  102.     HelpContext = 6
  103.     TabOrder = 9
  104.     Caption = 'Insert'
  105.     OnClick = AnyButtonClick
  106.   end
  107.   object Edit5: TEdit
  108.     Left = 120
  109.     Top = 136
  110.     Width = 241
  111.     Height = 24
  112.     TabOrder = 4
  113.     Text = 'Edit5'
  114.     OnKeyDown = Edit1KeyDown
  115.   end
  116.   object First: TButton
  117.     Left = 8
  118.     Top = 176
  119.     Width = 89
  120.     Height = 33
  121.     HelpContext = 1
  122.     TabOrder = 5
  123.     Caption = '<<'
  124.     OnClick = AnyButtonClick
  125.   end
  126.   object Prior: TButton
  127.     Left = 104
  128.     Top = 176
  129.     Width = 89
  130.     Height = 33
  131.     HelpContext = 2
  132.     TabOrder = 6
  133.     Caption = '<'
  134.     OnClick = AnyButtonClick
  135.   end
  136.   object Next: TButton
  137.     Left = 200
  138.     Top = 176
  139.     Width = 89
  140.     Height = 33
  141.     HelpContext = 3
  142.     TabOrder = 7
  143.     Caption = '>'
  144.     OnClick = AnyButtonClick
  145.   end
  146.   object Last: TButton
  147.     Left = 296
  148.     Top = 176
  149.     Width = 89
  150.     Height = 33
  151.     HelpContext = 4
  152.     TabOrder = 8
  153.     Caption = '>>'
  154.     OnClick = AnyButtonClick
  155.   end
  156.   object Post: TButton
  157.     Left = 200
  158.     Top = 224
  159.     Width = 89
  160.     Height = 33
  161.     HelpContext = 7
  162.     TabOrder = 11
  163.     Caption = 'Post'
  164.     OnClick = AnyButtonClick
  165.   end
  166.   object Panel1: TPanel
  167.     Top = 264
  168.     Width = 394
  169.     Height = 25
  170.     TabOrder = 13
  171.     BevelInner = bvLowered
  172.     Color = clSilver
  173.     object Label6: TLabel
  174.       Left = 8
  175.       Top = 5
  176.       Width = 49
  177.       Height = 16
  178.       Caption = 'Browse'
  179.     end
  180.   end
  181.   object Cancel: TButton
  182.     Left = 296
  183.     Top = 224
  184.     Width = 89
  185.     Height = 33
  186.     HelpContext = 8
  187.     TabOrder = 12
  188.     Caption = 'Cancel'
  189.     OnClick = AnyButtonClick
  190.   end
  191.   object Table1: TTable
  192.     Active = True
  193.     DatabaseName = 'dbdemos'
  194.     TableName = 'COUNTRY'
  195.     Left = 8
  196.     Top = 8
  197.   end
  198.   object DataSource1: TDataSource
  199.     DataSet = Table1
  200.     OnStateChange = DataSource1StateChange
  201.     OnDataChange = DataSource1DataChange
  202.     OnUpdateData = DataSource1UpdateData
  203.     Left = 8
  204.     Top = 40
  205.   end
  206. end
  207.