home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Db / Cachedup / cachedup.dfm / cachedup.txt
Encoding:
Text File  |  1999-08-11  |  3.9 KB  |  188 lines

  1. object CacheDemoForm: TCacheDemoForm
  2.   Left = 239
  3.   Top = 170
  4.   AutoScroll = False
  5.   Caption = 'Cached Updates Example'
  6.   ClientHeight = 327
  7.   ClientWidth = 492
  8.   Font.Charset = ANSI_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object DBGrid1: TDBGrid
  19.     Left = 9
  20.     Top = 36
  21.     Width = 332
  22.     Height = 281
  23.     Columns = <
  24.       item
  25.         FieldName = 'PROJ_ID'
  26.         Title.Alignment = taCenter
  27.         Title.Caption = 'ProjID'
  28.         Width = 50
  29.       end
  30.       item
  31.         FieldName = 'PROJ_NAME'
  32.         Title.Alignment = taCenter
  33.         Title.Caption = 'Project Name'
  34.         Width = 107
  35.       end
  36.       item
  37.         FieldName = 'UpdateStatus'
  38.         ReadOnly = True
  39.         Title.Alignment = taCenter
  40.         Title.Caption = 'Update Status'
  41.         Width = 141
  42.       end>
  43.     DataSource = CacheData.CacheDS
  44.     TabOrder = 0
  45.     TitleFont.Charset = ANSI_CHARSET
  46.     TitleFont.Color = clWindowText
  47.     TitleFont.Height = -11
  48.     TitleFont.Name = 'MS Sans Serif'
  49.     TitleFont.Style = []
  50.   end
  51.   object DBNavigator1: TDBNavigator
  52.     Left = 59
  53.     Top = 4
  54.     Width = 240
  55.     Height = 25
  56.     DataSource = CacheData.CacheDS
  57.     TabOrder = 1
  58.   end
  59.   object GroupBox1: TGroupBox
  60.     Left = 351
  61.     Top = 205
  62.     Width = 129
  63.     Height = 109
  64.     Caption = 'Show Records'
  65.     TabOrder = 2
  66.     object UnmodifiedCB: TCheckBox
  67.       Left = 12
  68.       Top = 16
  69.       Width = 81
  70.       Height = 17
  71.       Caption = 'Unmodified'
  72.       State = cbChecked
  73.       TabOrder = 0
  74.       OnClick = UpdateRecordsToShow
  75.     end
  76.     object ModifiedCB: TCheckBox
  77.       Left = 12
  78.       Top = 38
  79.       Width = 81
  80.       Height = 17
  81.       Caption = 'Modified'
  82.       State = cbChecked
  83.       TabOrder = 1
  84.       OnClick = UpdateRecordsToShow
  85.     end
  86.     object InsertedCB: TCheckBox
  87.       Left = 12
  88.       Top = 60
  89.       Width = 81
  90.       Height = 17
  91.       Caption = 'Inserted'
  92.       State = cbChecked
  93.       TabOrder = 2
  94.       OnClick = UpdateRecordsToShow
  95.     end
  96.     object DeletedCB: TCheckBox
  97.       Left = 12
  98.       Top = 82
  99.       Width = 81
  100.       Height = 17
  101.       Caption = 'Deleted'
  102.       TabOrder = 3
  103.       OnClick = UpdateRecordsToShow
  104.     end
  105.   end
  106.   object Panel1: TPanel
  107.     Left = 351
  108.     Top = 36
  109.     Width = 129
  110.     Height = 53
  111.     BevelInner = bvRaised
  112.     BevelOuter = bvLowered
  113.     TabOrder = 3
  114.     object CachedUpdates: TCheckBox
  115.       Left = 11
  116.       Top = 7
  117.       Width = 114
  118.       Height = 17
  119.       Caption = '&Cached Updates'
  120.       State = cbChecked
  121.       TabOrder = 0
  122.       OnClick = ToggleUpdateMode
  123.     end
  124.     object UseUpdateSQL: TCheckBox
  125.       Left = 11
  126.       Top = 28
  127.       Width = 110
  128.       Height = 17
  129.       Caption = 'Use Update SQL'
  130.       TabOrder = 1
  131.       OnClick = UseUpdateSQLClick
  132.     end
  133.   end
  134.   object Panel2: TPanel
  135.     Left = 351
  136.     Top = 96
  137.     Width = 129
  138.     Height = 106
  139.     BevelInner = bvRaised
  140.     BevelOuter = bvLowered
  141.     TabOrder = 4
  142.     object ApplyUpdatesBtn: TButton
  143.       Left = 9
  144.       Top = 9
  145.       Width = 110
  146.       Height = 25
  147.       Caption = '&Apply Updates'
  148.       TabOrder = 0
  149.       OnClick = ApplyUpdatesBtnClick
  150.     end
  151.     object CancelUpdatesBtn: TButton
  152.       Left = 9
  153.       Top = 41
  154.       Width = 110
  155.       Height = 25
  156.       Caption = '&Cancel Updates'
  157.       TabOrder = 1
  158.       OnClick = CancelUpdatesBtnClick
  159.     end
  160.     object RevertRecordBtn: TButton
  161.       Left = 9
  162.       Top = 72
  163.       Width = 110
  164.       Height = 25
  165.       Caption = '&Revert Record'
  166.       TabOrder = 2
  167.       OnClick = RevertRecordBtnClick
  168.     end
  169.   end
  170.   object ReExecuteButton: TButton
  171.     Left = 352
  172.     Top = 4
  173.     Width = 129
  174.     Height = 25
  175.     Caption = 'Re-execute Query'
  176.     TabOrder = 5
  177.     OnClick = ReExecuteButtonClick
  178.   end
  179.   object MainMenu1: TMainMenu
  180.     Left = 268
  181.     Top = 263
  182.     object miAbout: TMenuItem
  183.       Caption = 'A&bout'
  184.       OnClick = miAboutClick
  185.     end
  186.   end
  187. end
  188.