home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / DATABASE / UTEEBLOB.DFM / UTEEBLOB.txt
Encoding:
Text File  |  1998-10-24  |  3.1 KB  |  143 lines

  1. object FormChartBlob: TFormChartBlob
  2.   Left = 192
  3.   Top = 160
  4.   Width = 549
  5.   Height = 433
  6.   ActiveControl = DBGrid1
  7.   Caption = 'teeMach, SL --- Using TeeChart in BLOB fields'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Chart1: TChart
  18.     Left = 161
  19.     Top = 41
  20.     Width = 380
  21.     Height = 324
  22.     BackWall.Brush.Color = clWhite
  23.     BackWall.Brush.Style = bsClear
  24.     Title.Text.Strings = (
  25.       'TChart')
  26.     BottomAxis.EndPosition = 100.000000000000000000
  27.     LeftAxis.EndPosition = 100.000000000000000000
  28.     RightAxis.EndPosition = 100.000000000000000000
  29.     TopAxis.EndPosition = 100.000000000000000000
  30.     Align = alClient
  31.     TabOrder = 2
  32.   end
  33.   object DBGrid1: TDBGrid
  34.     Left = 0
  35.     Top = 41
  36.     Width = 161
  37.     Height = 324
  38.     Align = alLeft
  39.     DataSource = DataSource1
  40.     Options = [dgEditing, dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgConfirmDelete]
  41.     TabOrder = 1
  42.     TitleFont.Color = clWindowText
  43.     TitleFont.Height = -11
  44.     TitleFont.Name = 'MS Sans Serif'
  45.     TitleFont.Style = []
  46.   end
  47.   object Panel1: TPanel
  48.     Left = 0
  49.     Top = 0
  50.     Width = 541
  51.     Height = 41
  52.     Align = alTop
  53.     TabOrder = 0
  54.     object Label1: TLabel
  55.       Left = 344
  56.       Top = 16
  57.       Width = 90
  58.       Height = 13
  59.       Caption = 'Chart Size in bytes:'
  60.     end
  61.     object Label2: TLabel
  62.       Left = 440
  63.       Top = 16
  64.       Width = 32
  65.       Height = 13
  66.       Caption = 'Label2'
  67.     end
  68.     object DBNavigator1: TDBNavigator
  69.       Left = 8
  70.       Top = 8
  71.       Width = 209
  72.       Height = 25
  73.       DataSource = DataSource1
  74.       VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast, nbInsert, nbDelete, nbPost, nbCancel]
  75.       TabOrder = 0
  76.     end
  77.     object Button1: TButton
  78.       Left = 256
  79.       Top = 8
  80.       Width = 75
  81.       Height = 25
  82.       Caption = '&Edit Chart...'
  83.       TabOrder = 1
  84.       OnClick = Button1Click
  85.     end
  86.   end
  87.   object Panel2: TPanel
  88.     Left = 0
  89.     Top = 365
  90.     Width = 541
  91.     Height = 41
  92.     Align = alBottom
  93.     TabOrder = 3
  94.     object Label3: TLabel
  95.       Left = 56
  96.       Top = 8
  97.       Width = 3
  98.       Height = 13
  99.     end
  100.     object Label4: TLabel
  101.       Left = 16
  102.       Top = 16
  103.       Width = 376
  104.       Height = 13
  105.       Caption = 
  106.         'Add, delete or modify records. Each record contains a TeeChart i' +
  107.         'n a BLOB field.'
  108.     end
  109.     object Button2: TButton
  110.       Left = 448
  111.       Top = 8
  112.       Width = 75
  113.       Height = 25
  114.       Caption = 'Close'
  115.       TabOrder = 0
  116.       OnClick = Button2Click
  117.     end
  118.   end
  119.   object Table1: TTable
  120.     BeforePost = Table1BeforePost
  121.     OnNewRecord = Table1NewRecord
  122.     DatabaseName = 'dbdemos'
  123.     TableName = 'TEEBLOB'
  124.     TableType = ttParadox
  125.     Left = 64
  126.     Top = 176
  127.     object Table1Description: TStringField
  128.       FieldName = 'Description'
  129.       Size = 100
  130.     end
  131.     object Table1Chart: TBlobField
  132.       FieldName = 'Chart'
  133.       Size = 240
  134.     end
  135.   end
  136.   object DataSource1: TDataSource
  137.     DataSet = Table1
  138.     OnDataChange = DataSource1DataChange
  139.     Left = 128
  140.     Top = 176
  141.   end
  142. end
  143.