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

  1. object Form1: TForm1
  2.   Left = 271
  3.   Top = 235
  4.   Width = 436
  5.   Height = 367
  6.   Caption = 'CachedUpdate Demo'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Label1: TLabel
  15.     Left = 40
  16.     Top = 40
  17.     Width = 227
  18.     Height = 13
  19.     Caption = 'This grid is Hooked to the  TQuery  QueryCache'
  20.   end
  21.   object Label2: TLabel
  22.     Left = 48
  23.     Top = 184
  24.     Width = 214
  25.     Height = 13
  26.     Caption = 'This grid is hooked to a TTable TableRefresh'
  27.   end
  28.   object DBGridRefresh: TDBGrid
  29.     Left = 0
  30.     Top = 200
  31.     Width = 320
  32.     Height = 120
  33.     DataSource = DataModuleCache.DataSourceRefresh
  34.     Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgConfirmDelete, dgCancelOnExit]
  35.     ReadOnly = True
  36.     TabOrder = 0
  37.     TitleFont.Charset = DEFAULT_CHARSET
  38.     TitleFont.Color = clWindowText
  39.     TitleFont.Height = -11
  40.     TitleFont.Name = 'MS Sans Serif'
  41.     TitleFont.Style = []
  42.   end
  43.   object DBGridCache: TDBGrid
  44.     Left = 0
  45.     Top = 56
  46.     Width = 320
  47.     Height = 120
  48.     DataSource = DataModuleCache.DataSourceCache
  49.     TabOrder = 1
  50.     TitleFont.Charset = DEFAULT_CHARSET
  51.     TitleFont.Color = clWindowText
  52.     TitleFont.Height = -11
  53.     TitleFont.Name = 'MS Sans Serif'
  54.     TitleFont.Style = []
  55.   end
  56.   object DBNavigator1: TDBNavigator
  57.     Left = 0
  58.     Top = 0
  59.     Width = 320
  60.     Height = 25
  61.     DataSource = DataModuleCache.DataSourceCache
  62.     ParentShowHint = False
  63.     ShowHint = True
  64.     TabOrder = 2
  65.   end
  66.   object ButtonApply: TButton
  67.     Left = 336
  68.     Top = 40
  69.     Width = 75
  70.     Height = 25
  71.     Caption = 'Apply'
  72.     TabOrder = 3
  73.     OnClick = ButtonApplyClick
  74.   end
  75.   object ButtonCancel: TButton
  76.     Left = 336
  77.     Top = 80
  78.     Width = 75
  79.     Height = 25
  80.     Caption = 'Cancel'
  81.     TabOrder = 4
  82.     OnClick = ButtonCancelClick
  83.   end
  84.   object ButtonUndo: TButton
  85.     Left = 336
  86.     Top = 120
  87.     Width = 75
  88.     Height = 25
  89.     Caption = 'Undo'
  90.     TabOrder = 5
  91.     OnClick = ButtonUndoClick
  92.   end
  93.   object ButtonRefresh: TButton
  94.     Left = 336
  95.     Top = 216
  96.     Width = 75
  97.     Height = 25
  98.     Caption = 'Refresh'
  99.     TabOrder = 6
  100.     OnClick = ButtonRefreshClick
  101.   end
  102. end
  103.