home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / SQLBUILD.ZIP / SQB14_D1.ZIP / SQLBLD01.DFM / SQLBLD01.txt
Encoding:
Text File  |  1996-09-24  |  3.8 KB  |  196 lines

  1. object frmExpBuilder: TfrmExpBuilder
  2.   Left = 13
  3.   Top = 56
  4.   HelpContext = 2020
  5.   BorderStyle = bsDialog
  6.   Caption = 'Expression Builder'
  7.   ClientHeight = 317
  8.   ClientWidth = 610
  9.   Font.Color = clBlack
  10.   Font.Height = -13
  11.   Font.Name = 'Arial'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 16
  17.   object Bevel1: TBevel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 610
  21.     Height = 241
  22.     Align = alTop
  23.     Shape = bsBottomLine
  24.   end
  25.   object Label1: TLabel
  26.     Left = 68
  27.     Top = 2
  28.     Width = 70
  29.     Height = 18
  30.     Caption = 'Functions'
  31.     Font.Color = clBlack
  32.     Font.Height = -15
  33.     Font.Name = 'Arial'
  34.     Font.Style = [fsBold]
  35.     ParentFont = False
  36.   end
  37.   object Label2: TLabel
  38.     Left = 229
  39.     Top = 2
  40.     Width = 72
  41.     Height = 18
  42.     Caption = 'Operators'
  43.     Font.Color = clBlack
  44.     Font.Height = -15
  45.     Font.Name = 'Arial'
  46.     Font.Style = [fsBold]
  47.     ParentFont = False
  48.   end
  49.   object Label3: TLabel
  50.     Left = 409
  51.     Top = 2
  52.     Width = 111
  53.     Height = 18
  54.     Caption = 'Fields Available'
  55.     Font.Color = clBlack
  56.     Font.Height = -15
  57.     Font.Name = 'Arial'
  58.     Font.Style = [fsBold]
  59.     ParentFont = False
  60.   end
  61.   object Label4: TLabel
  62.     Left = 78
  63.     Top = 208
  64.     Width = 454
  65.     Height = 30
  66.     Alignment = taCenter
  67.     AutoSize = False
  68.     Caption = 
  69.       'To insert any function, operator or field into the expression, d' +
  70.       'ouble click the required item. If any of the expression text is ' +
  71.       'already selected it will be replaced.'
  72.     Font.Color = clBlack
  73.     Font.Height = -12
  74.     Font.Name = 'Arial'
  75.     Font.Style = []
  76.     ParentFont = False
  77.     Transparent = True
  78.     WordWrap = True
  79.   end
  80.   object EditExpression: TEdit
  81.     Left = 5
  82.     Top = 252
  83.     Width = 598
  84.     Height = 24
  85.     Font.Color = clBlack
  86.     Font.Height = -13
  87.     Font.Name = 'Arial'
  88.     Font.Style = []
  89.     ParentFont = False
  90.     TabOrder = 0
  91.     Text = 'EditExpression'
  92.   end
  93.   object BitBtn1: TBitBtn
  94.     Left = 162
  95.     Top = 287
  96.     Width = 88
  97.     Height = 30
  98.     TabOrder = 1
  99.     Kind = bkOK
  100.     Style = bsNew
  101.   end
  102.   object BitBtn2: TBitBtn
  103.     Left = 261
  104.     Top = 287
  105.     Width = 88
  106.     Height = 30
  107.     TabOrder = 2
  108.     Kind = bkCancel
  109.     Style = bsNew
  110.   end
  111.   object BitBtn3: TBitBtn
  112.     Left = 360
  113.     Top = 287
  114.     Width = 88
  115.     Height = 30
  116.     TabOrder = 3
  117.     Kind = bkHelp
  118.     Style = bsNew
  119.   end
  120.   object lbFunctions: TListBox
  121.     Left = 6
  122.     Top = 20
  123.     Width = 216
  124.     Height = 182
  125.     Font.Color = clBlack
  126.     Font.Height = -13
  127.     Font.Name = 'Arial'
  128.     Font.Style = []
  129.     ItemHeight = 16
  130.     Items.Strings = (
  131.       'AVG( field_name ) '
  132.       'COUNT( field_name ) '
  133.       'EXTRACT( extract_field FROM field_name ) '
  134.       'LOWER( field_name ) '
  135.       'MAX( field_name ) '
  136.       'MIN( field_name ) '
  137.       'SUBSTRING( field_name FROM Start_Pos FOR Length ) '
  138.       'SUM( field_name ) '
  139.       'TRIM( field_name ) '
  140.       'UPPER( field_name )'
  141.       ' ')
  142.     ParentFont = False
  143.     TabOrder = 4
  144.     OnDblClick = lbFunctionsDblClick
  145.   end
  146.   object lbOperators: TListBox
  147.     Left = 228
  148.     Top = 20
  149.     Width = 90
  150.     Height = 182
  151.     Font.Color = clBlack
  152.     Font.Height = -13
  153.     Font.Name = 'Arial'
  154.     Font.Style = []
  155.     ItemHeight = 16
  156.     Items.Strings = (
  157.       '+'
  158.       '-'
  159.       '*'
  160.       '/'
  161.       '('
  162.       ')'
  163.       '='
  164.       '<'
  165.       '<='
  166.       '>'
  167.       '>='
  168.       '<>'
  169.       'IS NULL'
  170.       'LIKE'
  171.       'IN (set)'
  172.       ''
  173.       'AND'
  174.       'OR'
  175.       'NOT'
  176.       '||')
  177.     ParentFont = False
  178.     TabOrder = 5
  179.     OnDblClick = lbFunctionsDblClick
  180.   end
  181.   object lbFieldsAvailable: TListBox
  182.     Left = 322
  183.     Top = 20
  184.     Width = 281
  185.     Height = 182
  186.     Font.Color = clBlack
  187.     Font.Height = -13
  188.     Font.Name = 'Arial'
  189.     Font.Style = []
  190.     ItemHeight = 16
  191.     ParentFont = False
  192.     TabOrder = 6
  193.     OnDblClick = lbFunctionsDblClick
  194.   end
  195. end
  196.