home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 October / PCWorld_2000-10_cd2.bin / Borland / interbase / IBConsole_src.ZIP / ibconsole / frmuSQLOptions.dfm < prev    next >
Text File  |  2000-06-08  |  4KB  |  179 lines

  1. inherited frmSQLOptions: TfrmSQLOptions
  2.   Left = 370
  3.   Top = 364
  4.   Caption = 'SQL Options'
  5.   ClientHeight = 328
  6.   ClientWidth = 309
  7.   OldCreateOrder = True
  8.   Position = poOwnerFormCenter
  9.   OnShow = FormShow
  10.   PixelsPerInch = 96
  11.   TextHeight = 13
  12.   object btnApply: TButton
  13.     Left = 231
  14.     Top = 295
  15.     Width = 75
  16.     Height = 25
  17.     Caption = '&Apply'
  18.     Enabled = False
  19.     TabOrder = 0
  20.     OnClick = btnApplyClick
  21.   end
  22.   object Button1: TButton
  23.     Left = 69
  24.     Top = 295
  25.     Width = 75
  26.     Height = 25
  27.     Caption = '&OK'
  28.     TabOrder = 1
  29.     OnClick = Button1Click
  30.   end
  31.   object pgControl: TPageControl
  32.     Left = 0
  33.     Top = 0
  34.     Width = 309
  35.     Height = 288
  36.     ActivePage = TabSheet2
  37.     Align = alTop
  38.     TabOrder = 2
  39.     object TabSheet1: TTabSheet
  40.       Caption = 'Options'
  41.       object sgOptions: TStringGrid
  42.         Left = 3
  43.         Top = 6
  44.         Width = 294
  45.         Height = 203
  46.         Color = clSilver
  47.         ColCount = 2
  48.         DefaultColWidth = 90
  49.         DefaultRowHeight = 21
  50.         FixedCols = 0
  51.         RowCount = 9
  52.         FixedRows = 0
  53.         Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goColSizing]
  54.         ScrollBars = ssNone
  55.         TabOrder = 0
  56.         OnDblClick = sgOptionsDblClick
  57.         OnDrawCell = sgOptionsDrawCell
  58.         OnSelectCell = sgOptionsSelectCell
  59.         ColWidths = (
  60.           174
  61.           113)
  62.       end
  63.       object pnlOptionName: TPanel
  64.         Left = 6
  65.         Top = 5
  66.         Width = 172
  67.         Height = 25
  68.         Alignment = taLeftJustify
  69.         BevelInner = bvLowered
  70.         BevelOuter = bvLowered
  71.         TabOrder = 1
  72.       end
  73.       object cbOptions: TComboBox
  74.         Left = 179
  75.         Top = 7
  76.         Width = 116
  77.         Height = 21
  78.         TabStop = False
  79.         ItemHeight = 0
  80.         ParentShowHint = False
  81.         ShowHint = False
  82.         TabOrder = 2
  83.         OnChange = cbOptionsChange
  84.         OnDblClick = cbOptionsDblClick
  85.         OnExit = cbOptionsExit
  86.         OnKeyDown = cbOptionsKeyDown
  87.       end
  88.       object cbClearInput: TCheckBox
  89.         Left = 9
  90.         Top = 225
  91.         Width = 188
  92.         Height = 17
  93.         Caption = '&Clear input window on success'
  94.         TabOrder = 3
  95.         OnClick = cbOptionsChange
  96.       end
  97.     end
  98.     object TabSheet2: TTabSheet
  99.       Caption = 'Advanced'
  100.       ImageIndex = 1
  101.       object GroupBox1: TGroupBox
  102.         Left = 5
  103.         Top = 4
  104.         Width = 292
  105.         Height = 166
  106.         Caption = 'SQL Events'
  107.         TabOrder = 0
  108.         object Label1: TLabel
  109.           Left = 10
  110.           Top = 79
  111.           Width = 39
  112.           Height = 13
  113.           Caption = 'NOTE:'
  114.           Font.Charset = DEFAULT_CHARSET
  115.           Font.Color = clWindowText
  116.           Font.Height = -11
  117.           Font.Name = 'MS Sans Serif'
  118.           Font.Style = [fsBold]
  119.           ParentFont = False
  120.         end
  121.         object cbUpdateConnect: TCheckBox
  122.           Left = 7
  123.           Top = 21
  124.           Width = 179
  125.           Height = 17
  126.           Caption = 'Update IBConsole on C&onnect'
  127.           TabOrder = 0
  128.           OnClick = cbOptionsChange
  129.         end
  130.         object cbUpdateCreate: TCheckBox
  131.           Left = 7
  132.           Top = 45
  133.           Width = 171
  134.           Height = 17
  135.           Caption = 'Update IBConsole on C&reate'
  136.           TabOrder = 1
  137.           OnClick = cbOptionsChange
  138.         end
  139.         object Memo1: TMemo
  140.           Left = 20
  141.           Top = 93
  142.           Width = 259
  143.           Height = 46
  144.           BorderStyle = bsNone
  145.           Lines.Strings = (
  146.             'Enabling either option may result in an additional '
  147.             'connection to the server.')
  148.           ParentColor = True
  149.           TabOrder = 2
  150.         end
  151.       end
  152.       object rgTransactions: TRadioGroup
  153.         Left = 6
  154.         Top = 172
  155.         Width = 292
  156.         Height = 82
  157.         Caption = 'Transactions'
  158.         ItemIndex = 0
  159.         Items.Strings = (
  160.           '&Commit on exit'
  161.           'Ro&llback on exit')
  162.         TabOrder = 1
  163.         OnClick = cbOptionsChange
  164.       end
  165.     end
  166.   end
  167.   object Button2: TButton
  168.     Left = 150
  169.     Top = 295
  170.     Width = 75
  171.     Height = 25
  172.     Cancel = True
  173.     Caption = '&Cancel'
  174.     ModalResult = 2
  175.     TabOrder = 3
  176.     OnClick = Button2Click
  177.   end
  178. end
  179.