home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / delphi / ODA10 / _SETUP.1 / DemoGrid.dfm / DemoGrid.txt
Encoding:
Text File  |  1996-04-06  |  2.1 KB  |  102 lines

  1. object FormGrid: TFormGrid
  2.   Left = 269
  3.   Top = 183
  4.   Width = 556
  5.   Height = 431
  6.   Caption = 'Single Query with Grid'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object DBGrid1: TDBGrid
  15.     Left = 0
  16.     Top = 41
  17.     Width = 548
  18.     Height = 324
  19.     Align = alClient
  20.     DataSource = SrcComp
  21.     TabOrder = 0
  22.     TitleFont.Color = clWindowText
  23.     TitleFont.Height = -11
  24.     TitleFont.Name = 'MS Sans Serif'
  25.     TitleFont.Style = []
  26.   end
  27.   object Panel1: TPanel
  28.     Left = 0
  29.     Top = 0
  30.     Width = 548
  31.     Height = 41
  32.     Align = alTop
  33.     TabOrder = 1
  34.     object DBNavigator1: TDBNavigator
  35.       Left = 8
  36.       Top = 8
  37.       Width = 240
  38.       Height = 25
  39.       DataSource = SrcComp
  40.       TabOrder = 0
  41.     end
  42.   end
  43.   object Panel2: TPanel
  44.     Left = 0
  45.     Top = 365
  46.     Width = 548
  47.     Height = 39
  48.     Align = alBottom
  49.     TabOrder = 2
  50.     object Label1: TLabel
  51.       Left = 8
  52.       Top = 12
  53.       Width = 509
  54.       Height = 13
  55.       Caption = 
  56.         'Note the presence of default values when adding records. The def' +
  57.         'aults are defined in the Access database.'
  58.     end
  59.   end
  60.   object QryComp: TQuery
  61.     Active = True
  62.     DatabaseName = 'DBDemo'
  63.     SessionName = 'Demo'
  64.     RequestLive = True
  65.     SQL.Strings = (
  66.       'Select * from Person')
  67.     Left = 452
  68.     Top = 4
  69.     object QryCompPers_ID: TAutoIncField
  70.       DisplayWidth = 6
  71.       FieldName = 'Pers_ID'
  72.     end
  73.     object QryCompPers_LastName: TStringField
  74.       DisplayWidth = 20
  75.       FieldName = 'Pers_LastName'
  76.       Size = 50
  77.     end
  78.     object QryCompPers_FirstName: TStringField
  79.       DisplayWidth = 15
  80.       FieldName = 'Pers_FirstName'
  81.       Size = 50
  82.     end
  83.     object QryCompPers_Remarks: TMemoField
  84.       DisplayWidth = 18
  85.       FieldName = 'Pers_Remarks'
  86.       BlobType = ftMemo
  87.       Size = 65535
  88.     end
  89.     object QryCompPers_Birthday: TDateTimeField
  90.       FieldName = 'Pers_Birthday'
  91.     end
  92.     object QryCompPers_IsFemale: TBooleanField
  93.       FieldName = 'Pers_IsFemale'
  94.     end
  95.   end
  96.   object SrcComp: TDataSource
  97.     DataSet = QryComp
  98.     Left = 484
  99.     Top = 4
  100.   end
  101. end
  102.