home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Lib / mxdcube.dfm / mxdcube.txt
Text File  |  1999-08-11  |  12KB  |  493 lines

  1. object DSSCubeEditor: TDSSCubeEditor
  2.   Left = 281
  3.   Top = 101
  4.   HelpContext = 30170
  5.   BorderStyle = bsToolWindow
  6.   Caption = 'Decision Cube Editor'
  7.   ClientHeight = 340
  8.   ClientWidth = 491
  9.   ParentFont = True
  10.   KeyPreview = True
  11.   OnKeyPress = FormKeyPress
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Pager: TPageControl
  15.     Left = 6
  16.     Top = 5
  17.     Width = 480
  18.     Height = 293
  19.     ActivePage = DimensionInfo
  20.     TabOrder = 0
  21.     OnChange = PagerChange
  22.     object DimensionInfo: TTabSheet
  23.       HelpContext = 30171
  24.       Caption = 'Dimension Settings'
  25.       object CaptionLabel: TLabel
  26.         Left = 216
  27.         Top = 53
  28.         Width = 70
  29.         Height = 17
  30.         AutoSize = False
  31.         Caption = 'Display &Name'
  32.         FocusControl = CaptionEdit
  33.       end
  34.       object ActiveLabel: TLabel
  35.         Left = 216
  36.         Top = 113
  37.         Width = 70
  38.         Height = 17
  39.         AutoSize = False
  40.         Caption = '&Active Type'
  41.         FocusControl = ActiveEdit
  42.       end
  43.       object BinLabel: TLabel
  44.         Left = 216
  45.         Top = 174
  46.         Width = 70
  47.         Height = 17
  48.         AutoSize = False
  49.         Caption = '&Grouping'
  50.         FocusControl = BinEdit
  51.       end
  52.       object StartLabel: TLabel
  53.         Left = 216
  54.         Top = 204
  55.         Width = 70
  56.         Height = 17
  57.         AutoSize = False
  58.         Caption = '&Initial Value'
  59.         FocusControl = StartEdit
  60.       end
  61.       object TypeLabel: TLabel
  62.         Left = 216
  63.         Top = 83
  64.         Width = 70
  65.         Height = 17
  66.         AutoSize = False
  67.         Caption = '&Type'
  68.         FocusControl = TypeEdit
  69.       end
  70.       object Label1: TLabel
  71.         Left = 10
  72.         Top = 23
  73.         Width = 87
  74.         Height = 19
  75.         AutoSize = False
  76.         Caption = 'Available &Fields'
  77.         FocusControl = FieldList
  78.       end
  79.       object Label2: TLabel
  80.         Left = 216
  81.         Top = 144
  82.         Width = 70
  83.         Height = 17
  84.         AutoSize = False
  85.         Caption = 'For&mat'
  86.         FocusControl = FormatEdit
  87.       end
  88.       object ValueCount: TLabel
  89.         Left = 307
  90.         Top = 230
  91.         Width = 145
  92.         Height = 21
  93.         AutoSize = False
  94.         Visible = False
  95.       end
  96.       object BaseNameLabel: TLabel
  97.         Left = 216
  98.         Top = 234
  99.         Width = 70
  100.         Height = 17
  101.         AutoSize = False
  102.         Caption = '&Base Field'
  103.         FocusControl = BaseNameEdit
  104.       end
  105.       object FieldList: TListBox
  106.         Left = 10
  107.         Top = 43
  108.         Width = 191
  109.         Height = 186
  110.         ExtendedSelect = False
  111.         ItemHeight = 13
  112.         TabOrder = 0
  113.         OnClick = FieldListClick
  114.         OnDblClick = FieldListClick
  115.       end
  116.       object CaptionEdit: TEdit
  117.         Left = 307
  118.         Top = 50
  119.         Width = 145
  120.         Height = 21
  121.         TabOrder = 1
  122.         Text = 'CaptionEdit'
  123.         OnChange = HandleFieldEdit
  124.       end
  125.       object ActiveEdit: TComboBox
  126.         Left = 307
  127.         Top = 109
  128.         Width = 145
  129.         Height = 21
  130.         Hint = 'Control of when the information for this field is loaded'
  131.         ItemHeight = 13
  132.         Items.Strings = (
  133.           'Active'
  134.           'As Needed'
  135.           'Inactive')
  136.         ParentShowHint = False
  137.         ShowHint = True
  138.         TabOrder = 3
  139.         Text = 'ActiveEdit'
  140.         OnChange = HandleFieldEdit
  141.       end
  142.       object BinEdit: TComboBox
  143.         Left = 307
  144.         Top = 168
  145.         Width = 145
  146.         Height = 21
  147.         Hint = 'Group values for this field into ranges'
  148.         ItemHeight = 13
  149.         Items.Strings = (
  150.           'None'
  151.           'Year'
  152.           'Quarter'
  153.           'Month'
  154.           'Single Value')
  155.         ParentShowHint = False
  156.         ShowHint = True
  157.         TabOrder = 4
  158.         Text = 'BinEdit'
  159.         OnChange = HandleFieldEdit
  160.       end
  161.       object TypeEdit: TComboBox
  162.         Left = 307
  163.         Top = 79
  164.         Width = 145
  165.         Height = 21
  166.         ItemHeight = 13
  167.         Items.Strings = (
  168.           'Dimension'
  169.           'Sum'
  170.           'Count'
  171.           'Average'
  172.           'Min'
  173.           'Max'
  174.           'GenericAgg'
  175.           'Unknown')
  176.         ParentShowHint = False
  177.         ShowHint = False
  178.         TabOrder = 2
  179.         Text = 'TypeEdit'
  180.         OnChange = HandleFieldEdit
  181.       end
  182.       object FormatEdit: TEdit
  183.         Left = 307
  184.         Top = 138
  185.         Width = 145
  186.         Height = 21
  187.         ParentShowHint = False
  188.         ShowHint = False
  189.         TabOrder = 5
  190.         Text = 'FormatEdit'
  191.         OnChange = HandleFieldEdit
  192.       end
  193.       object StartEdit: TMaskEdit
  194.         Left = 307
  195.         Top = 197
  196.         Width = 145
  197.         Height = 21
  198.         Hint = 
  199.           'Starting value for date ranges, Intial value for single valued d' +
  200.           'imensions'
  201.         ParentShowHint = False
  202.         ShowHint = True
  203.         TabOrder = 6
  204.         OnChange = HandleFieldEdit
  205.       end
  206.       object BaseNameEdit: TMaskEdit
  207.         Left = 307
  208.         Top = 229
  209.         Width = 145
  210.         Height = 21
  211.         Hint = 
  212.           'Fieldname (for a summary, the original field used to calculate t' +
  213.           'he summary)'
  214.         ParentShowHint = False
  215.         ShowHint = True
  216.         TabOrder = 7
  217.         Text = 'BaseNameEdit'
  218.         OnChange = HandleFieldEdit
  219.       end
  220.     end
  221.     object MemoryControl: TTabSheet
  222.       HelpContext = 30172
  223.       Caption = 'Memory Control'
  224.       object Panel1: TGroupBox
  225.         Left = 9
  226.         Top = 152
  227.         Width = 454
  228.         Height = 106
  229.         Hint = 'Control whether to load the decision cube at design time'
  230.         Caption = 'Designer Data Options'
  231.         ParentShowHint = False
  232.         ShowHint = True
  233.         TabOrder = 0
  234.         object RadioMetaData: TRadioButton
  235.           Left = 44
  236.           Top = 20
  237.           Width = 153
  238.           Height = 21
  239.           Caption = 'Display Dimension &Names'
  240.           ParentShowHint = False
  241.           ShowHint = False
  242.           TabOrder = 0
  243.           OnClick = RadioMetaDataClick
  244.         end
  245.         object RadioDimensionData: TRadioButton
  246.           Left = 44
  247.           Top = 40
  248.           Width = 225
  249.           Height = 21
  250.           Caption = 'Display Names and &Values'
  251.           TabOrder = 1
  252.           OnClick = RadioDimensionDataClick
  253.         end
  254.         object RadioAllData: TRadioButton
  255.           Left = 44
  256.           Top = 60
  257.           Width = 196
  258.           Height = 21
  259.           Caption = 'Display Names, Values, and &Totals'
  260.           TabOrder = 2
  261.           OnClick = RadioAllDataClick
  262.         end
  263.         object RadioNoData: TRadioButton
  264.           Left = 44
  265.           Top = 80
  266.           Width = 147
  267.           Height = 21
  268.           Caption = '&Run Time Display Only'
  269.           TabOrder = 3
  270.           OnClick = RadioNoDataClick
  271.         end
  272.       end
  273.       object CubeLimits: TGroupBox
  274.         Left = 8
  275.         Top = 3
  276.         Width = 455
  277.         Height = 141
  278.         Caption = 'Cube Maximums'
  279.         TabOrder = 1
  280.         object NActiveDims: TLabel
  281.           Left = 118
  282.           Top = 113
  283.           Width = 57
  284.           Height = 18
  285.           Alignment = taCenter
  286.           AutoSize = False
  287.           Caption = '0'
  288.         end
  289.         object nDemandDims: TLabel
  290.           Left = 118
  291.           Top = 88
  292.           Width = 57
  293.           Height = 18
  294.           Alignment = taCenter
  295.           AutoSize = False
  296.           Caption = '0'
  297.         end
  298.         object Label4: TLabel
  299.           Left = 27
  300.           Top = 113
  301.           Width = 93
  302.           Height = 18
  303.           AutoSize = False
  304.           Caption = 'Active'
  305.         end
  306.         object Label7: TLabel
  307.           Left = 27
  308.           Top = 88
  309.           Width = 93
  310.           Height = 18
  311.           AutoSize = False
  312.           Caption = 'Active+Needed'
  313.         end
  314.         object Label9: TLabel
  315.           Left = 119
  316.           Top = 12
  317.           Width = 63
  318.           Height = 18
  319.           AutoSize = False
  320.           Caption = '&Dimensions'
  321.           FocusControl = MaxDims
  322.         end
  323.         object NActiveSums: TLabel
  324.           Left = 191
  325.           Top = 113
  326.           Width = 57
  327.           Height = 18
  328.           Alignment = taCenter
  329.           AutoSize = False
  330.           Caption = '0'
  331.         end
  332.         object NDemandSums: TLabel
  333.           Left = 191
  334.           Top = 88
  335.           Width = 57
  336.           Height = 18
  337.           Alignment = taCenter
  338.           AutoSize = False
  339.           Caption = '0'
  340.         end
  341.         object Label6: TLabel
  342.           Left = 186
  343.           Top = 12
  344.           Width = 67
  345.           Height = 18
  346.           Alignment = taCenter
  347.           AutoSize = False
  348.           Caption = '&Summaries'
  349.           FocusControl = MaxSums
  350.         end
  351.         object Label12: TLabel
  352.           Left = 267
  353.           Top = 11
  354.           Width = 64
  355.           Height = 18
  356.           Alignment = taCenter
  357.           AutoSize = False
  358.           Caption = '&Cells'
  359.           FocusControl = MaxCells
  360.         end
  361.         object nDemandCells: TLabel
  362.           Left = 266
  363.           Top = 88
  364.           Width = 65
  365.           Height = 18
  366.           Alignment = taCenter
  367.           AutoSize = False
  368.           Caption = '0'
  369.         end
  370.         object Label5: TLabel
  371.           Left = 27
  372.           Top = 32
  373.           Width = 50
  374.           Height = 18
  375.           AutoSize = False
  376.           Caption = 'Maximum'
  377.         end
  378.         object Label3: TLabel
  379.           Left = 27
  380.           Top = 64
  381.           Width = 93
  382.           Height = 18
  383.           AutoSize = False
  384.           Caption = 'Current'
  385.         end
  386.         object nCurrDims: TLabel
  387.           Left = 118
  388.           Top = 64
  389.           Width = 57
  390.           Height = 18
  391.           Alignment = taCenter
  392.           AutoSize = False
  393.           Caption = '0'
  394.         end
  395.         object nCurrSums: TLabel
  396.           Left = 191
  397.           Top = 64
  398.           Width = 57
  399.           Height = 18
  400.           Alignment = taCenter
  401.           AutoSize = False
  402.           Caption = '0'
  403.         end
  404.         object nCurrCells: TLabel
  405.           Left = 266
  406.           Top = 64
  407.           Width = 65
  408.           Height = 18
  409.           Alignment = taCenter
  410.           AutoSize = False
  411.           Caption = '0'
  412.         end
  413.         object MaxDims: TEdit
  414.           Left = 118
  415.           Top = 29
  416.           Width = 57
  417.           Height = 21
  418.           Hint = 
  419.             'Limit on the number of dimensions which can be loaded at one tim' +
  420.             'e'
  421.           ParentShowHint = False
  422.           ShowHint = True
  423.           TabOrder = 0
  424.         end
  425.         object MaxSums: TEdit
  426.           Left = 191
  427.           Top = 29
  428.           Width = 57
  429.           Height = 21
  430.           Hint = 'Limit on the number of summaries which can be loaded at one time'
  431.           ParentShowHint = False
  432.           ShowHint = True
  433.           TabOrder = 1
  434.         end
  435.         object MaxCells: TEdit
  436.           Left = 264
  437.           Top = 29
  438.           Width = 69
  439.           Height = 21
  440.           Hint = 
  441.             'Limit on the number of storage cells which can be loaded at one ' +
  442.             'time'
  443.           ParentShowHint = False
  444.           ShowHint = True
  445.           TabOrder = 2
  446.         end
  447.         object GetCellCounts: TButton
  448.           Left = 343
  449.           Top = 57
  450.           Width = 102
  451.           Height = 25
  452.           Hint = 'Run a query to fetch information required to estimate cell usage'
  453.           Caption = '&Get Cell Counts'
  454.           ParentShowHint = False
  455.           ShowHint = True
  456.           TabOrder = 3
  457.           OnClick = GetCellCountsClick
  458.         end
  459.       end
  460.     end
  461.   end
  462.   object OKButton: TButton
  463.     Left = 218
  464.     Top = 307
  465.     Width = 75
  466.     Height = 25
  467.     Caption = 'OK'
  468.     ModalResult = 1
  469.     TabOrder = 1
  470.     OnClick = OKButtonClick
  471.   end
  472.   object CancelButton: TButton
  473.     Left = 311
  474.     Top = 307
  475.     Width = 75
  476.     Height = 25
  477.     Caption = 'Cancel'
  478.     ModalResult = 2
  479.     TabOrder = 2
  480.     OnClick = CancelButtonClick
  481.   end
  482.   object HelpButton: TButton
  483.     Left = 403
  484.     Top = 307
  485.     Width = 75
  486.     Height = 25
  487.     HelpContext = 5500
  488.     Caption = '&Help'
  489.     TabOrder = 3
  490.     OnClick = HelpButtonClick
  491.   end
  492. end
  493.