public SPCAnalysisCondition()
        {
            this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._comUtil        = new CommonUtility();
            this._Initialization = new Initialization();

            InitializeComponent();
            this.dateCondition1      = new BISTel.eSPC.Condition.Controls.Date.DateCondition();
            this.dateCondition1.Dock = DockStyle.Fill;
            this.bTitlePnlPeriod.Controls.Add(dateCondition1);

            this.grpOperation.Text     = _mlthandler.GetVariable(Definition.LABEL.OPERATION_ID);
            this.grpParamItem.Text     = _mlthandler.GetVariable(Definition.LABEL.PARAMETER);
            this.grpSubData.Text       = _mlthandler.GetVariable(Definition.Analysis.LABEL_SUB_DATA);
            this.grpTarget.Text        = _mlthandler.GetVariable(Definition.Analysis.LABEL_TARGET);
            this.grpChartList.Text     = _mlthandler.GetVariable(Definition.Analysis.LABEL_CHART_LIST);
            this.bTitlePnlPeriod.Title = _mlthandler.GetVariable(Definition.LABEL.PERIOD);

            InitializePage();
        }
Example #2
0
        public MultiDataCondition()
        {
            this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._comUtil        = new CommonUtility();
            this._Initialization = new Initialization();
            this._bspreadutility = new BSpreadUtility();

            InitializeComponent();
            this.dateCondition1      = new BISTel.eSPC.Condition.Controls.Date.DateCondition();
            this.dateCondition1.Dock = DockStyle.Fill;
            this.bTPnlPeriod.Controls.Add(dateCondition1);

            this.sortUC      = new SortingKey();
            this.sortUC.Dock = DockStyle.Fill;
            this.bTPnlSortingKey.Controls.Add(sortUC);
            this.PROC_BindSortingKey();
            this.bTPnlPeriod.Title     = _mlthandler.GetVariable(Definition.LABEL.PERIOD);
            this.bTPnlSortingKey.Title = _mlthandler.GetVariable(Definition.Analysis.LABEL_SORTING_KEY);

            InitializePage();
        }