home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bde / sdkfilt.pak / MAIN.DFM / MAIN.txt
Encoding:
Text File  |  1997-07-24  |  3.3 KB  |  156 lines

  1. object MainForm: TMainForm
  2.   Left = 275
  3.   Top = 98
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'BDE - Delphi Filter Example'
  7.   ClientHeight = 246
  8.   ClientWidth = 562
  9.   Color = clGreen
  10.   Font.Color = clBlack
  11.   Font.Height = -13
  12.   Font.Name = 'MS Serif'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   TextHeight = 16
  18.   object DBGrid1: TDBGrid
  19.     Left = 0
  20.     Top = 0
  21.     Width = 562
  22.     Height = 168
  23.     Align = alTop
  24.     DataSource = DataSource1
  25.     FixedColor = clGreen
  26.     Font.Color = clWhite
  27.     Font.Height = -12
  28.     Font.Name = 'Arial'
  29.     Font.Style = []
  30.     ParentColor = True
  31.     ParentFont = False
  32.     ReadOnly = True
  33.     TabOrder = 0
  34.     TitleFont.Color = clBlack
  35.     TitleFont.Height = -12
  36.     TitleFont.Name = 'Arial'
  37.     TitleFont.Style = []
  38.   end
  39.   object DBImage1: TDBImage
  40.     Left = 0
  41.     Top = 168
  42.     Width = 149
  43.     Height = 78
  44.     Align = alLeft
  45.     Color = clGreen
  46.     DataField = 'Graphic'
  47.     DataSource = DataSource1
  48.     Stretch = True
  49.     TabOrder = 1
  50.   end
  51.   object DBMemo1: TDBMemo
  52.     Left = 149
  53.     Top = 168
  54.     Width = 224
  55.     Height = 78
  56.     Align = alLeft
  57.     DataField = 'Notes'
  58.     DataSource = DataSource1
  59.     Font.Color = clWhite
  60.     Font.Height = -11
  61.     Font.Name = 'Arial'
  62.     Font.Style = []
  63.     ParentColor = True
  64.     ParentFont = False
  65.     ReadOnly = True
  66.     ScrollBars = ssVertical
  67.     TabOrder = 2
  68.   end
  69.   object Panel1: TPanel
  70.     Left = 373
  71.     Top = 168
  72.     Width = 189
  73.     Height = 78
  74.     Align = alClient
  75.     BevelOuter = bvNone
  76.     BorderStyle = bsSingle
  77.     Color = clGreen
  78.     TabOrder = 3
  79.     object BeginLbl: TLabel
  80.       Left = 9
  81.       Top = 16
  82.       Width = 95
  83.       Height = 15
  84.       Caption = 'BeginFilter: None'
  85.       Font.Color = clWhite
  86.       Font.Height = -12
  87.       Font.Name = 'Arial'
  88.       Font.Style = []
  89.       ParentFont = False
  90.     end
  91.     object EndLbl: TLabel
  92.       Left = 9
  93.       Top = 48
  94.       Width = 88
  95.       Height = 15
  96.       Caption = 'End Filter: None'
  97.       Font.Color = clWhite
  98.       Font.Height = -12
  99.       Font.Name = 'Arial'
  100.       Font.Style = []
  101.       ParentFont = False
  102.     end
  103.     object AddFilterBtn: TButton
  104.       Left = 117
  105.       Top = 10
  106.       Width = 63
  107.       Height = 26
  108.       Caption = '&Add Filter'
  109.       Font.Color = clBlack
  110.       Font.Height = -12
  111.       Font.Name = 'MS Serif'
  112.       Font.Style = []
  113.       ParentFont = False
  114.       TabOrder = 0
  115.       OnClick = AddFilterBtnClick
  116.     end
  117.     object DropFilterBtn: TButton
  118.       Left = 117
  119.       Top = 43
  120.       Width = 63
  121.       Height = 25
  122.       Caption = '&Drop Filter'
  123.       Enabled = False
  124.       Font.Color = clBlack
  125.       Font.Height = -12
  126.       Font.Name = 'MS Serif'
  127.       Font.Style = []
  128.       ParentFont = False
  129.       TabOrder = 1
  130.       OnClick = DropFilterBtnClick
  131.     end
  132.   end
  133.   object BiolifeTable: TTable
  134.     DatabaseName = 'DBDEMOS'
  135.     ReadOnly = True
  136.     TableName = 'BIOLIFE.DB'
  137.     TableType = ttParadox
  138.     Left = 396
  139.     Top = 4
  140.   end
  141.   object DataSource1: TDataSource
  142.     DataSet = BiolifeTable
  143.     Left = 424
  144.     Top = 4
  145.   end
  146.   object OpenDialog1: TOpenDialog
  147.     DefaultExt = 'DB'
  148.     FileEditStyle = fsComboBox
  149.     FileName = 'biolife.db'
  150.     Filter = 'Paradox Tables (*.DB)|*.DB'
  151.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  152.     Left = 452
  153.     Top = 4
  154.   end
  155. end
  156.