home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1997 June / Freesoft_1997-06_cd.bin / nerecenz / programmers / SSW / SSW.EXE / 0 / RCDATA / TGENSQLOPTSFORM / TGENSQLOPTSFORM.txt
Text File  |  1997-05-06  |  3KB  |  161 lines

  1. object GenSQLOptsForm: TGenSQLOptsForm
  2.   Left = 372
  3.   Top = 259
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'SQL Text Options'
  7.   ClientHeight = 308
  8.   ClientWidth = 238
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 16
  18.     Top = 19
  19.     Width = 70
  20.     Height = 13
  21.     Caption = 'SQL &Keywords'
  22.     Font.Color = clBlack
  23.     Font.Height = -11
  24.     Font.Name = 'MS Sans Serif'
  25.     Font.Style = []
  26.     ParentFont = False
  27.   end
  28.   object Label2: TLabel
  29.     Left = 16
  30.     Top = 52
  31.     Width = 60
  32.     Height = 13
  33.     Caption = 'SQL &Objects'
  34.     Font.Color = clBlack
  35.     Font.Height = -11
  36.     Font.Name = 'MS Sans Serif'
  37.     Font.Style = []
  38.     ParentFont = False
  39.   end
  40.   object OKButton: TButton
  41.     Left = 19
  42.     Top = 272
  43.     Width = 75
  44.     Height = 25
  45.     Caption = '&OK'
  46.     Default = True
  47.     TabOrder = 2
  48.     OnClick = OKButtonClick
  49.   end
  50.   object CancelButton: TButton
  51.     Left = 139
  52.     Top = 272
  53.     Width = 81
  54.     Height = 25
  55.     Cancel = True
  56.     Caption = '&Cancel'
  57.     TabOrder = 3
  58.     OnClick = CancelButtonClick
  59.   end
  60.   object Preview: TMemo
  61.     Left = 12
  62.     Top = 116
  63.     Width = 213
  64.     Height = 136
  65.     TabStop = False
  66.     Color = clBtnFace
  67.     Font.Color = clBlack
  68.     Font.Height = -13
  69.     Font.Name = 'Courier New'
  70.     Font.Style = []
  71.     Lines.Strings = (
  72.       'SELECT'
  73.       '  name,'
  74.       '  address,'
  75.       '  phone_number'
  76.       'FROM'
  77.       '  people'
  78.       'WHERE'
  79.       '  name = :name;')
  80.     ParentFont = False
  81.     ReadOnly = True
  82.     TabOrder = 4
  83.   end
  84.   object KeywordCombo: TComboBox
  85.     Left = 96
  86.     Top = 16
  87.     Width = 113
  88.     Height = 21
  89.     Style = csDropDownList
  90.     ItemHeight = 13
  91.     Items.Strings = (
  92.       'Capitalised'
  93.       'Lowercase'
  94.       'Uppercase')
  95.     Sorted = True
  96.     TabOrder = 0
  97.     OnChange = KeywordComboChange
  98.   end
  99.   object ObjectCombo: TComboBox
  100.     Left = 96
  101.     Top = 48
  102.     Width = 113
  103.     Height = 21
  104.     Style = csDropDownList
  105.     ItemHeight = 13
  106.     Items.Strings = (
  107.       'Capitalised'
  108.       'Lowercase'
  109.       'Uppercase')
  110.     Sorted = True
  111.     TabOrder = 1
  112.     OnChange = ObjectComboChange
  113.   end
  114.   object CRInList: TCheckBox
  115.     Left = 16
  116.     Top = 80
  117.     Width = 113
  118.     Height = 17
  119.     Alignment = taLeftJustify
  120.     Caption = '&Carriage Returns'
  121.     TabOrder = 5
  122.     OnClick = CRInListClick
  123.   end
  124.   object WithCRs: TMemo
  125.     Left = 152
  126.     Top = 80
  127.     Width = 25
  128.     Height = 25
  129.     Lines.Strings = (
  130.       'select'
  131.       '   name,'
  132.       '   address'
  133.       'from'
  134.       '   people'
  135.       'where'
  136.       '   name = :name;')
  137.     ReadOnly = True
  138.     TabOrder = 6
  139.     Visible = False
  140.     WordWrap = False
  141.   end
  142.   object WithoutCRs: TMemo
  143.     Left = 192
  144.     Top = 80
  145.     Width = 25
  146.     Height = 25
  147.     TabStop = False
  148.     Lines.Strings = (
  149.       'select'
  150.       '   name,address'
  151.       'from'
  152.       '   people'
  153.       'where'
  154.       '   name = :name;')
  155.     ReadOnly = True
  156.     TabOrder = 7
  157.     Visible = False
  158.     WordWrap = False
  159.   end
  160. end
  161.