home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 October / PCWorld_2000-10_cd2.bin / Borland / interbase / IBConsole_src.ZIP / ibconsole / frmuDBTransactions.dfm / frmuDBTransactions.txt
Text File  |  2000-06-08  |  3KB  |  159 lines

  1. object frmDBTransactions: TfrmDBTransactions
  2.   Left = 844
  3.   Top = 265
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Transaction Recovery'
  7.   ClientHeight = 417
  8.   ClientWidth = 421
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   Scaled = False
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object lblDatabase: TLabel
  22.     Left = 10
  23.     Top = 14
  24.     Width = 49
  25.     Height = 13
  26.     Caption = 'Database:'
  27.   end
  28.   object lblRepairStatus: TLabel
  29.     Left = 14
  30.     Top = 398
  31.     Width = 104
  32.     Height = 13
  33.     Caption = 'Repairing Transaction'
  34.     Visible = False
  35.   end
  36.   object pgcMain: TPageControl
  37.     Left = 0
  38.     Top = 43
  39.     Width = 421
  40.     Height = 249
  41.     ActivePage = tabTransactions
  42.     TabOrder = 0
  43.     OnChange = pgcMainChange
  44.     OnChanging = pgcMainChanging
  45.     object tabTransactions: TTabSheet
  46.       Caption = 'Transactions'
  47.       object lblConnectPath: TLabel
  48.         Left = 8
  49.         Top = 190
  50.         Width = 105
  51.         Height = 16
  52.         AutoSize = False
  53.         Caption = 'Connect &Path:'
  54.         FocusControl = edtPath
  55.       end
  56.       object edtPath: TEdit
  57.         Left = 112
  58.         Top = 185
  59.         Width = 296
  60.         Height = 21
  61.         TabOrder = 0
  62.       end
  63.       object lvTransactions: TListView
  64.         Left = 0
  65.         Top = 0
  66.         Width = 413
  67.         Height = 169
  68.         Align = alTop
  69.         Columns = <
  70.           item
  71.             AutoSize = True
  72.             Caption = 'Transaction'
  73.           end
  74.           item
  75.             Caption = 'ID'
  76.             Width = 62
  77.           end
  78.           item
  79.             Caption = 'Action'
  80.             Width = 100
  81.           end
  82.           item
  83.             Caption = 'Status'
  84.             Width = 85
  85.           end>
  86.         ReadOnly = True
  87.         RowSelect = True
  88.         TabOrder = 1
  89.         ViewStyle = vsReport
  90.         OnSelectItem = lvTransactionsSelectItem
  91.       end
  92.     end
  93.     object tabAdvice: TTabSheet
  94.       Caption = 'Details'
  95.       ImageIndex = 1
  96.       object lblStatus: TLabel
  97.         Left = 4
  98.         Top = 11
  99.         Width = 92
  100.         Height = 13
  101.         Caption = 'Transaction Status:'
  102.       end
  103.       object memAdvice: TMemo
  104.         Left = 0
  105.         Top = 32
  106.         Width = 413
  107.         Height = 189
  108.         Align = alBottom
  109.         ReadOnly = True
  110.         ScrollBars = ssBoth
  111.         TabOrder = 0
  112.       end
  113.     end
  114.   end
  115.   object stxDatabase: TStaticText
  116.     Left = 81
  117.     Top = 15
  118.     Width = 334
  119.     Height = 21
  120.     AutoSize = False
  121.     TabOrder = 1
  122.   end
  123.   object btnOK: TButton
  124.     Left = 257
  125.     Top = 389
  126.     Width = 75
  127.     Height = 25
  128.     Caption = '&Repair'
  129.     Default = True
  130.     TabOrder = 2
  131.     OnClick = btnOKClick
  132.   end
  133.   object btnCancel: TButton
  134.     Left = 340
  135.     Top = 389
  136.     Width = 75
  137.     Height = 25
  138.     Caption = '&Cancel'
  139.     TabOrder = 3
  140.     OnClick = btnCancelClick
  141.   end
  142.   object rgOptions: TRadioGroup
  143.     Left = 5
  144.     Top = 296
  145.     Width = 408
  146.     Height = 85
  147.     Caption = 'Repair &Options'
  148.     Columns = 2
  149.     ItemIndex = 0
  150.     Items.Strings = (
  151.       '&Perform recommended action'
  152.       'Co&mmit all transactions'
  153.       'R&oll back all transactions'
  154.       'Use &Two-Phase Commit')
  155.     TabOrder = 4
  156.     OnClick = rgOptionsClick
  157.   end
  158. end
  159.