home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2001 #5 / K-CD_2001-05.iso / K.exe / 0 / RCDATA / TQREXPRESSIONBUILDER / TQREXPRESSIONBUILDER.txt
Text File  |  2001-02-19  |  13KB  |  588 lines

  1. object QRExpressionBuilder: TQRExpressionBuilder
  2.   Left = 174
  3.   Top = 133
  4.   BorderStyle = bsDialog
  5.   Caption = 'Expression Wizard'
  6.   ClientHeight = 269
  7.   ClientWidth = 376
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   OldCreateOrder = True
  11.   Position = poScreenCenter
  12.   OnActivate = FormActivate
  13.   OnCloseQuery = FormCloseQuery
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object VariablePage: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 376
  21.     Height = 269
  22.     Align = alClient
  23.     BevelOuter = bvNone
  24.     Caption = 'VariablePage'
  25.     Enabled = False
  26.     TabOrder = 4
  27.     object GroupBox5: TGroupBox
  28.       Left = 18
  29.       Top = 10
  30.       Width = 343
  31.       Height = 205
  32.       Caption = 'Select variable'
  33.       TabOrder = 0
  34.       object VariableValue: TLabel
  35.         Left = 54
  36.         Top = 180
  37.         Width = 65
  38.         Height = 13
  39.         Caption = 'VariableValue'
  40.       end
  41.       object Label1: TLabel
  42.         Left = 18
  43.         Top = 180
  44.         Width = 33
  45.         Height = 13
  46.         Caption = 'Value :'
  47.       end
  48.       object AvailableVariables: TListBox
  49.         Left = 16
  50.         Top = 20
  51.         Width = 311
  52.         Height = 155
  53.         ItemHeight = 13
  54.         TabOrder = 0
  55.         OnClick = AvailableVariablesClick
  56.         OnDblClick = VariableOKBtnClick
  57.       end
  58.     end
  59.     object VariableOKBtn: TButton
  60.       Left = 252
  61.       Top = 233
  62.       Width = 49
  63.       Height = 21
  64.       Caption = 'OK'
  65.       TabOrder = 1
  66.       OnClick = VariableOKBtnClick
  67.     end
  68.     object VariableCancelBtn: TButton
  69.       Left = 312
  70.       Top = 233
  71.       Width = 49
  72.       Height = 21
  73.       Caption = 'Cancel'
  74.       TabOrder = 2
  75.       OnClick = VariableCancelBtnClick
  76.     end
  77.     object ModifyVariables: TButton
  78.       Left = 20
  79.       Top = 233
  80.       Width = 111
  81.       Height = 21
  82.       Caption = '&Modify variables'
  83.       TabOrder = 3
  84.       OnClick = ModifyVariablesClick
  85.     end
  86.   end
  87.   object MainPage: TPanel
  88.     Left = 0
  89.     Top = 0
  90.     Width = 376
  91.     Height = 269
  92.     Align = alClient
  93.     BevelOuter = bvNone
  94.     TabOrder = 0
  95.     object Heading: TLabel
  96.       Left = 18
  97.       Top = 16
  98.       Width = 81
  99.       Height = 13
  100.       Caption = 'Enter expression:'
  101.     end
  102.     object GroupBox1: TGroupBox
  103.       Left = 18
  104.       Top = 134
  105.       Width = 343
  106.       Height = 81
  107.       Caption = 'Insert at cursor position'
  108.       TabOrder = 0
  109.       object InsertDataFieldBtn: TButton
  110.         Left = 10
  111.         Top = 18
  112.         Width = 100
  113.         Height = 25
  114.         Caption = '&Database field'
  115.         TabOrder = 0
  116.         OnClick = InsertDataFieldBtnClick
  117.       end
  118.       object InsertFunctionBtn: TButton
  119.         Left = 120
  120.         Top = 18
  121.         Width = 100
  122.         Height = 25
  123.         Caption = '&Function'
  124.         TabOrder = 1
  125.         OnClick = InsertFunctionBtnClick
  126.       end
  127.       object InsertVariableBtn: TButton
  128.         Left = 234
  129.         Top = 18
  130.         Width = 100
  131.         Height = 25
  132.         Caption = '&Variable'
  133.         TabOrder = 2
  134.         OnClick = InsertVariableBtnClick
  135.       end
  136.       object AddPlus: TButton
  137.         Left = 10
  138.         Top = 50
  139.         Width = 25
  140.         Height = 21
  141.         Caption = '+'
  142.         TabOrder = 3
  143.         OnClick = AddSomeClick
  144.       end
  145.       object AddMinus: TButton
  146.         Left = 35
  147.         Top = 50
  148.         Width = 25
  149.         Height = 21
  150.         Caption = '-'
  151.         TabOrder = 4
  152.         OnClick = AddSomeClick
  153.       end
  154.       object AddMul: TButton
  155.         Left = 60
  156.         Top = 50
  157.         Width = 25
  158.         Height = 21
  159.         Caption = '*'
  160.         TabOrder = 5
  161.         OnClick = AddSomeClick
  162.       end
  163.       object AddDiv: TButton
  164.         Left = 85
  165.         Top = 50
  166.         Width = 25
  167.         Height = 21
  168.         Caption = '/'
  169.         TabOrder = 6
  170.         OnClick = AddSomeClick
  171.       end
  172.       object AddEqual: TButton
  173.         Left = 110
  174.         Top = 50
  175.         Width = 25
  176.         Height = 21
  177.         Caption = '='
  178.         TabOrder = 7
  179.         OnClick = AddSomeClick
  180.       end
  181.       object AddSmaller: TButton
  182.         Left = 135
  183.         Top = 50
  184.         Width = 25
  185.         Height = 21
  186.         Caption = '<'
  187.         TabOrder = 8
  188.         OnClick = AddSomeClick
  189.       end
  190.       object AddLarger: TButton
  191.         Left = 160
  192.         Top = 50
  193.         Width = 25
  194.         Height = 21
  195.         Caption = '>'
  196.         TabOrder = 9
  197.         OnClick = AddSomeClick
  198.       end
  199.       object AddNotEqual: TButton
  200.         Left = 185
  201.         Top = 50
  202.         Width = 25
  203.         Height = 21
  204.         Caption = '<>'
  205.         TabOrder = 10
  206.         OnClick = AddSomeClick
  207.       end
  208.       object AddLessEqual: TButton
  209.         Left = 210
  210.         Top = 50
  211.         Width = 25
  212.         Height = 21
  213.         Caption = '<='
  214.         TabOrder = 11
  215.         OnClick = AddSomeClick
  216.       end
  217.       object AddGreaterEqual: TButton
  218.         Left = 235
  219.         Top = 50
  220.         Width = 25
  221.         Height = 21
  222.         Caption = '>='
  223.         TabOrder = 12
  224.         OnClick = AddSomeClick
  225.       end
  226.       object AddNot: TButton
  227.         Left = 260
  228.         Top = 50
  229.         Width = 25
  230.         Height = 21
  231.         Caption = 'Not'
  232.         TabOrder = 13
  233.         OnClick = AddSomeClick
  234.       end
  235.       object AddAnd: TButton
  236.         Left = 285
  237.         Top = 50
  238.         Width = 25
  239.         Height = 21
  240.         Caption = 'And'
  241.         TabOrder = 14
  242.         OnClick = AddSomeClick
  243.       end
  244.       object AddOr: TButton
  245.         Left = 310
  246.         Top = 50
  247.         Width = 25
  248.         Height = 21
  249.         Caption = 'Or'
  250.         TabOrder = 15
  251.         OnClick = AddSomeClick
  252.       end
  253.     end
  254.     object ValidateBtn: TButton
  255.       Left = 78
  256.       Top = 233
  257.       Width = 49
  258.       Height = 21
  259.       Caption = 'Valida&te'
  260.       TabOrder = 1
  261.       OnClick = ValidateBtnClick
  262.     end
  263.     object Clear: TButton
  264.       Left = 20
  265.       Top = 233
  266.       Width = 49
  267.       Height = 21
  268.       Caption = '&Clear'
  269.       TabOrder = 2
  270.       OnClick = ClearClick
  271.     end
  272.     object OK: TButton
  273.       Left = 252
  274.       Top = 233
  275.       Width = 49
  276.       Height = 21
  277.       Caption = 'OK'
  278.       Default = True
  279.       ModalResult = 1
  280.       TabOrder = 3
  281.       OnClick = OKClick
  282.     end
  283.     object Cancel: TButton
  284.       Left = 312
  285.       Top = 233
  286.       Width = 49
  287.       Height = 21
  288.       Cancel = True
  289.       Caption = 'Cancel'
  290.       ModalResult = 2
  291.       TabOrder = 4
  292.       OnClick = CancelClick
  293.     end
  294.   end
  295.   object DataFieldPage: TPanel
  296.     Left = 0
  297.     Top = 0
  298.     Width = 376
  299.     Height = 269
  300.     Align = alClient
  301.     BevelOuter = bvNone
  302.     Enabled = False
  303.     TabOrder = 1
  304.     object DataFieldOKBtn: TButton
  305.       Left = 252
  306.       Top = 233
  307.       Width = 49
  308.       Height = 21
  309.       Caption = 'OK'
  310.       TabOrder = 0
  311.       OnClick = DataFieldOKBtnClick
  312.     end
  313.     object DataFieldCancelBtn: TButton
  314.       Left = 312
  315.       Top = 233
  316.       Width = 49
  317.       Height = 21
  318.       Caption = 'Cancel'
  319.       TabOrder = 1
  320.       OnClick = DataFieldCancelBtnClick
  321.     end
  322.     object DataFieldGB: TGroupBox
  323.       Left = 18
  324.       Top = 10
  325.       Width = 343
  326.       Height = 205
  327.       Caption = 'Insert database field in expression'
  328.       TabOrder = 2
  329.       object Label2: TLabel
  330.         Left = 12
  331.         Top = 18
  332.         Width = 68
  333.         Height = 13
  334.         Caption = 'Select dataset'
  335.       end
  336.       object Label3: TLabel
  337.         Left = 12
  338.         Top = 60
  339.         Width = 70
  340.         Height = 13
  341.         Caption = 'Available fields'
  342.       end
  343.       object DataSet: TComboBox
  344.         Left = 10
  345.         Top = 36
  346.         Width = 317
  347.         Height = 21
  348.         Style = csDropDownList
  349.         ItemHeight = 13
  350.         Sorted = True
  351.         TabOrder = 0
  352.       end
  353.       object DataField: TListBox
  354.         Left = 10
  355.         Top = 76
  356.         Width = 315
  357.         Height = 117
  358.         Columns = 2
  359.         ItemHeight = 13
  360.         Items.Strings = (
  361.           'Custno'
  362.           'Name'
  363.           'Contact'
  364.           'Contact-e-mail'
  365.           'Address1'
  366.           'Address2'
  367.           'Address3'
  368.           'Address4'
  369.           'Country'
  370.           'Phone'
  371.           'Fax'
  372.           'Web'
  373.           'Credit-limit'
  374.           'Rating'
  375.           'Default-Discount'
  376.           'OurContact')
  377.         TabOrder = 1
  378.       end
  379.       object GroupBox2: TGroupBox
  380.         Left = 0
  381.         Top = 0
  382.         Width = 343
  383.         Height = 205
  384.         Caption = 'Insert database field in expression'
  385.         TabOrder = 2
  386.         object Label4: TLabel
  387.           Left = 16
  388.           Top = 20
  389.           Width = 68
  390.           Height = 13
  391.           Caption = 'Select dataset'
  392.         end
  393.         object Label5: TLabel
  394.           Left = 186
  395.           Top = 20
  396.           Width = 70
  397.           Height = 13
  398.           Caption = 'Available fields'
  399.         end
  400.         object AvailableFields: TListBox
  401.           Left = 184
  402.           Top = 40
  403.           Width = 139
  404.           Height = 150
  405.           ItemHeight = 13
  406.           TabOrder = 0
  407.           OnDblClick = DataFieldOKBtnClick
  408.         end
  409.         object AvailableDatasets: TListBox
  410.           Left = 14
  411.           Top = 40
  412.           Width = 140
  413.           Height = 150
  414.           ItemHeight = 13
  415.           TabOrder = 1
  416.           OnClick = AvailableDatasetsClick
  417.         end
  418.       end
  419.     end
  420.   end
  421.   object FunctionPage: TPanel
  422.     Left = 0
  423.     Top = 0
  424.     Width = 376
  425.     Height = 269
  426.     Align = alClient
  427.     BevelOuter = bvNone
  428.     Enabled = False
  429.     TabOrder = 2
  430.     object FunctionOKBtn: TButton
  431.       Left = 252
  432.       Top = 233
  433.       Width = 49
  434.       Height = 21
  435.       Caption = 'Continue'
  436.       TabOrder = 0
  437.       OnClick = FunctionOKBtnClick
  438.     end
  439.     object FunctionCancelBtn: TButton
  440.       Left = 312
  441.       Top = 233
  442.       Width = 49
  443.       Height = 21
  444.       Caption = 'Cancel'
  445.       TabOrder = 1
  446.       OnClick = FunctionCancelBtnClick
  447.     end
  448.     object GroupBox4: TGroupBox
  449.       Left = 18
  450.       Top = 10
  451.       Width = 343
  452.       Height = 205
  453.       Caption = 'Select function'
  454.       TabOrder = 2
  455.       object Label6: TLabel
  456.         Left = 18
  457.         Top = 22
  458.         Width = 42
  459.         Height = 13
  460.         Caption = 'Category'
  461.       end
  462.       object Label7: TLabel
  463.         Left = 186
  464.         Top = 22
  465.         Width = 89
  466.         Height = 13
  467.         Caption = 'Available functions'
  468.       end
  469.       object FuncName: TLabel
  470.         Left = 18
  471.         Top = 160
  472.         Width = 61
  473.         Height = 13
  474.         Caption = 'FuncName'
  475.         Font.Charset = DEFAULT_CHARSET
  476.         Font.Color = clWindowText
  477.         Font.Height = -11
  478.         Font.Name = 'Default'
  479.         Font.Style = [fsBold]
  480.         ParentFont = False
  481.       end
  482.       object FuncDescription: TLabel
  483.         Left = 18
  484.         Top = 174
  485.         Width = 307
  486.         Height = 27
  487.         AutoSize = False
  488.         Caption = 'FuncDescription'
  489.         WordWrap = True
  490.       end
  491.       object Categories: TListBox
  492.         Left = 16
  493.         Top = 42
  494.         Width = 140
  495.         Height = 113
  496.         ItemHeight = 13
  497.         Items.Strings = (
  498.           'All'
  499.           'Date & time'
  500.           'Math & trig'
  501.           'Statistical'
  502.           'Database'
  503.           'Logical'
  504.           'Information'
  505.           'Other')
  506.         TabOrder = 0
  507.         OnClick = CategoriesClick
  508.       end
  509.       object AvailableFunc: TListBox
  510.         Left = 184
  511.         Top = 42
  512.         Width = 140
  513.         Height = 113
  514.         ItemHeight = 13
  515.         TabOrder = 1
  516.         OnClick = AvailableFuncClick
  517.         OnDblClick = FunctionOKBtnClick
  518.       end
  519.     end
  520.   end
  521.   object FuncParamsPage: TPanel
  522.     Left = 0
  523.     Top = 0
  524.     Width = 376
  525.     Height = 269
  526.     Align = alClient
  527.     BevelOuter = bvNone
  528.     Enabled = False
  529.     TabOrder = 3
  530.     object GroupBox3: TGroupBox
  531.       Left = 18
  532.       Top = 10
  533.       Width = 343
  534.       Height = 205
  535.       Caption = 'Enter parameters for function'
  536.       TabOrder = 0
  537.       object CopyFuncName: TLabel
  538.         Left = 16
  539.         Top = 16
  540.         Width = 61
  541.         Height = 13
  542.         Caption = 'FuncName'
  543.         Font.Charset = DEFAULT_CHARSET
  544.         Font.Color = clWindowText
  545.         Font.Height = -11
  546.         Font.Name = 'Default'
  547.         Font.Style = [fsBold]
  548.         ParentFont = False
  549.       end
  550.       object CopyFuncDescription: TLabel
  551.         Left = 16
  552.         Top = 30
  553.         Width = 307
  554.         Height = 27
  555.         AutoSize = False
  556.         Caption = 'FuncDescription'
  557.         WordWrap = True
  558.       end
  559.       object FuncParamSB: TScrollBox
  560.         Left = 4
  561.         Top = 72
  562.         Width = 335
  563.         Height = 129
  564.         BorderStyle = bsNone
  565.         TabOrder = 0
  566.       end
  567.     end
  568.     object FuncParamOkBtn: TButton
  569.       Left = 252
  570.       Top = 233
  571.       Width = 49
  572.       Height = 21
  573.       Caption = 'OK'
  574.       TabOrder = 1
  575.       OnClick = FuncParamOkBtnClick
  576.     end
  577.     object FuncArgCancelBtn: TButton
  578.       Left = 312
  579.       Top = 233
  580.       Width = 49
  581.       Height = 21
  582.       Caption = 'Cancel'
  583.       TabOrder = 2
  584.       OnClick = FuncArgCancelBtnClick
  585.     end
  586.   end
  587. end
  588.