home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Help / Examples / Tabcntrl / CLSEXM1.DFM / CLSEXM1.txt
Encoding:
Text File  |  1999-08-11  |  3.7 KB  |  183 lines

  1. object Form1: TForm1
  2.   Left = 202
  3.   Top = 108
  4.   Width = 366
  5.   Height = 354
  6.   Caption = 'Form1'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object TabControl1: TTabControl
  16.     Left = 0
  17.     Top = 0
  18.     Width = 358
  19.     Height = 327
  20.     Align = alClient
  21.     TabOrder = 0
  22.     OnChange = TabControl1Change
  23.     object Label1: TLabel
  24.       Left = 16
  25.       Top = 72
  26.       Width = 35
  27.       Height = 13
  28.       Caption = 'EmpNo'
  29.       FocusControl = DBEdit1
  30.     end
  31.     object Label2: TLabel
  32.       Left = 16
  33.       Top = 112
  34.       Width = 48
  35.       Height = 13
  36.       Caption = 'LastName'
  37.       FocusControl = DBEdit2
  38.     end
  39.     object Label3: TLabel
  40.       Left = 16
  41.       Top = 152
  42.       Width = 47
  43.       Height = 13
  44.       Caption = 'FirstName'
  45.       FocusControl = DBEdit3
  46.     end
  47.     object Label4: TLabel
  48.       Left = 16
  49.       Top = 192
  50.       Width = 46
  51.       Height = 13
  52.       Caption = 'PhoneExt'
  53.       FocusControl = DBEdit4
  54.     end
  55.     object Label5: TLabel
  56.       Left = 16
  57.       Top = 232
  58.       Width = 42
  59.       Height = 13
  60.       Caption = 'HireDate'
  61.       FocusControl = DBEdit5
  62.     end
  63.     object Label6: TLabel
  64.       Left = 16
  65.       Top = 272
  66.       Width = 29
  67.       Height = 13
  68.       Caption = 'Salary'
  69.       FocusControl = DBEdit6
  70.     end
  71.     object DBText1: TDBText
  72.       Left = 56
  73.       Top = 48
  74.       Width = 6
  75.       Height = 20
  76.       AutoSize = True
  77.       DataField = 'FullName'
  78.       DataSource = DataSource1
  79.       Font.Charset = ANSI_CHARSET
  80.       Font.Color = clBlack
  81.       Font.Height = -16
  82.       Font.Name = 'MS Sans Serif'
  83.       Font.Style = [fsBold]
  84.       ParentFont = False
  85.     end
  86.     object DBEdit1: TDBEdit
  87.       Left = 16
  88.       Top = 88
  89.       Width = 64
  90.       Height = 21
  91.       DataField = 'EmpNo'
  92.       DataSource = DataSource1
  93.       TabOrder = 0
  94.     end
  95.     object DBEdit2: TDBEdit
  96.       Left = 16
  97.       Top = 128
  98.       Width = 124
  99.       Height = 21
  100.       DataField = 'LastName'
  101.       DataSource = DataSource1
  102.       TabOrder = 1
  103.     end
  104.     object DBEdit3: TDBEdit
  105.       Left = 16
  106.       Top = 168
  107.       Width = 94
  108.       Height = 21
  109.       DataField = 'FirstName'
  110.       DataSource = DataSource1
  111.       TabOrder = 2
  112.     end
  113.     object DBEdit4: TDBEdit
  114.       Left = 16
  115.       Top = 208
  116.       Width = 28
  117.       Height = 21
  118.       DataField = 'PhoneExt'
  119.       DataSource = DataSource1
  120.       TabOrder = 3
  121.     end
  122.     object DBEdit5: TDBEdit
  123.       Left = 16
  124.       Top = 248
  125.       Width = 64
  126.       Height = 21
  127.       DataField = 'HireDate'
  128.       DataSource = DataSource1
  129.       TabOrder = 4
  130.     end
  131.     object DBEdit6: TDBEdit
  132.       Left = 16
  133.       Top = 288
  134.       Width = 64
  135.       Height = 21
  136.       DataField = 'Salary'
  137.       DataSource = DataSource1
  138.       TabOrder = 5
  139.     end
  140.   end
  141.   object Table1: TTable
  142.     Active = True
  143.     OnCalcFields = Table1CalcFields
  144.     DatabaseName = 'DBDEMOS'
  145.     TableName = 'EMPLOYEE.DB'
  146.     Left = 32
  147.     Top = 48
  148.     object Table1EmpNo: TIntegerField
  149.       FieldName = 'EmpNo'
  150.       DisplayFormat = 'Emp'#39'#'#39' 0000'
  151.       MaxValue = 9999
  152.       MinValue = 1
  153.     end
  154.     object Table1LastName: TStringField
  155.       FieldName = 'LastName'
  156.     end
  157.     object Table1FirstName: TStringField
  158.       FieldName = 'FirstName'
  159.       Size = 15
  160.     end
  161.     object Table1PhoneExt: TStringField
  162.       FieldName = 'PhoneExt'
  163.       Size = 4
  164.     end
  165.     object Table1HireDate: TDateTimeField
  166.       FieldName = 'HireDate'
  167.     end
  168.     object Table1Salary: TFloatField
  169.       FieldName = 'Salary'
  170.     end
  171.     object Table1FullName: TStringField
  172.       FieldName = 'FullName'
  173.       Size = 30
  174.       Calculated = True
  175.     end
  176.   end
  177.   object DataSource1: TDataSource
  178.     DataSet = Table1
  179.     Left = 64
  180.     Top = 48
  181.   end
  182. end
  183.