public void InitializePopup()
        {
            this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._Initialization = new Initialization();
            this._Initialization.InitializePath();

            this._SpreadUtil = new BSpreadUtility();
            this._ComUtil    = new CommonUtility();

            if (this._sSelectedContextValues != null)
            {
                this.Title = "Set Context Value List";
                _bContext  = true;
            }
            else if (this._sSelectedExcludeValues != null)
            {
                this.Title = "Set Exclude Value List";
                _bContext  = false;
            }

            _dsContextKey = this._wsSPC.GetSPCContextKeyTableAndColumns();

            _arrLstDBContextKeys = new ArrayList();

            for (int i = 0; i < _dsContextKey.Tables[0].Rows.Count; i++)
            {
                this._arrLstDBContextKeys.Add(_dsContextKey.Tables[0].Rows[i]["CONTEXT_KEY"].ToString());
            }

            this.InitializeBTabControl();
        }
Example #2
0
        ///
        /// DC에서 설정된 값으로 만들어진 BTreeView 인스턴스를 받아서
        /// 추가적으로 노드 혹은 이벤트를 연결한다.
        ///
        ///
        public void SetDCTree(BTreeView btv)
        {
            this._spcWebService = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler    = MultiLanguageHandler.getInstance();

            _btvCondition = btv;

            btv.RefreshNode  += new BTreeView.RefreshNodeEventHandler(Tree_RefreshNode);
            btv.AfterExpand  += new TreeViewEventHandler(btv_AfterExpand);
            btv.BeforeExpand += new TreeViewCancelEventHandler(Tree_BeforeExpand);

            _btvCondition.ImageList.Images.AddRange(ImageLoaderHandler.Instance.TreeArrayImage);
            // btv.CheckCountType = BTreeView.CheckCountTypes.Single;

            //SPC MODEL LEVEL을 가져옴
            LinkedList llstCondtion = new LinkedList();

            llstCondtion.Add(Definition.CONDITION_KEY_CATEGORY, "SPC_MODEL_LEVEL");
            llstCondtion.Add(Definition.CONDITION_KEY_USE_YN, "Y");
            //llstCondtion.Add(Definition.CONDITION_KEY_DEFAULT_COL, "Y");

            DataSet dsModelLevel = this._spcWebService.GetCodeData(llstCondtion.GetSerialData());

            if (DSUtil.CheckRowCount(dsModelLevel))
            {
                this._sSPCModelLevel = dsModelLevel.Tables[0].Rows[0][COLUMN.CODE].ToString();
            }

            // _sSPCModelLevel = Definition.CONDITION_KEY_EQP_MODEL;
        }
        public SearchConditionInterface()
        {
            InitializeComponent();

            this._spcWebService = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            InitializeDefaultCondition();
        }
Example #4
0
        public void InitializePopup()
        {
            this._ws             = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._Initialization = new Initialization();
            this._Initialization.InitializePath();

            // JIRA SPC-592 [GSMC] Disable "Use Normalization Value" - 2011.08.29 by ANDREW KO
            this._bShowNormalization = this._Initialization.GetContextShowNormalization(Definition.PAGE_KEY_SPC_CONFIGURATION);
            // JIRA No.SPC-600 Change unit of Minimum Samples to flexable unit (like Lot, Wafer...) - 2011.09.10 by ANDREW KO
            // No.5 on GF Communication Sheet 20110612 V1.21 - 2011.09.10 by ANDREW KO
            this._sUnitOfSamples = this._Initialization.GetUnitOfSamples(Definition.PAGE_KEY_SPC_CONFIGURATION);

            //SPC-736 OCAP action(option) - 2012.02.10 by louis you
            this._sOCAPOfSingle = this._Initialization.GetOCAPOfSingle(Definition.PAGE_KEY_SPC_CONFIGURATION);

            this.spcConfigurationUC.MODELINGTYPE = this._ModelingType;
            this.spcConfigurationUC.PageInfo(_SessionData.GetXml(), "", this.URL, this.PORT, "", "", "", "");

            //spc-1199
            this.spcConfigurationUC.ORIGINAL_DATA = this._dtOriginalData;

            this.InitializeLayout();

            this.InitializeConfigData();
            this.ContentsAreaMinHeight = 580;
            this.ContentsAreaMinWidth  = 780;
        }
 public void InitializeLayout()
 {
     this._ws             = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
 }
        public SPCDataExportConditionTree()
        {
            _Initialization = new Initialization();

            if (!DesignMode)
            {
                this.bTreeView1.AfterCheck += new TreeViewEventHandler(bTreeView1_AfterCheck);
            }

            base.InitializeComponent();
            InitializeComponent();

            try
            {
                ws = new WebServiceController <eSPCWebService.eSPCWebService>().Create();

                //this.bTreeView1.AddLevelForCheck(1);
                this.bTreeView1.BeforeExpand += new TreeViewCancelEventHandler(bTreeView1_BeforeExpand);
                this.ClickSearch             += new ClickSearchEventHandler(SPCDataExportConditionTree_ClickSearch);
                //added by enkim 2012.10.17 SPC-915
                this.bTreeView1.RefreshNode += new BTreeView.RefreshNodeEventHandler(bTreeView1_RefreshNode);
                //added end SPC-915
            }catch
            {
            }
        }
Example #7
0
 public void Init()
 {
     _wsSPC           = new BISTel.eSPC.Page.eSPCWebService.eSPCWebService();
     this._mlthandler = MultiLanguageHandler.getInstance();
     _dataManager     = new SourceDataManager();
     _Initialization  = new Initialization();
     this._Initialization.InitializePath();
 }
Example #8
0
        internal SPCModelListController(eSPCWebService.eSPCWebService ws, Control parent)
        {
            this._ws = ws;

            this.parent = parent;

            notContextColumnNames.AddRange(new string[] { "SELECT", "CHART_ID", "SPC_MODEL_NAME", "MAIN_YN" });
        }
Example #9
0
 public void InitializePopup()
 {
     _comUtil    = new CommonUtility();
     _mlthandler = MultiLanguageHandler.getInstance();
     _wsSPC      = new BISTel.eSPC.Page.eSPCWebService.eSPCWebService();
     this.InitializeLayout();
     this.InitializeCondition();
 }
Example #10
0
        public StepCondition()
        {
            InitializeComponent();
            InitializePage();

            this._fdcWebService = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            _dtStep             = new DataTable();
        }
Example #11
0
 public void InitializeVariable()
 {
     this._Initialization = new Initialization();
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization.InitializePath();
     this._lstRawColumn = new List <string>();
     this._chartUtil    = new ChartUtility();
     this._wsSPC        = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
 }
Example #12
0
 public void InitializeVariable()
 {
     this._ws             = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
     this._bspreadutility = new BSpreadUtility();
     this._ComUtil        = new CommonUtility();
 }
Example #13
0
        //SPC-1292, KBLEE, END

        #endregion

        #region : Constructor

        public ChartViewPopup()
        {
            InitializeComponent();

            this.mInitialization = new Initialization();
            this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._comUtil        = new CommonUtility();
        }
Example #14
0
 public ChartInformation()
 {
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
     this.comSPCStat = new CommonSPCStat();
     this._wsSPC     = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
     InitializeComponent();
 }
        public void SetDCTree(BISTel.PeakPerformance.Client.BISTelControl.BTreeView btv)
        {
            this._spcWebService = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler    = MultiLanguageHandler.getInstance();

            //SPC MODEL LEVEL을 가져옴
            LinkedList llstCondtion = new LinkedList();

            if (this.GetType().FullName == "BISTel.eSPC.Condition.Controls.ComboTree.AreasComboTreeControl")
            {
                llstCondtion.Add(Definition.CONDITION_KEY_CATEGORY, "SPC_MODEL_LEVEL");
            }
            else if (this.GetType().FullName == "BISTel.eSPC.Condition.ATT.Controls.ComboTree.AreasComboTreeControl")
            {
                llstCondtion.Add(Definition.CONDITION_KEY_CATEGORY, "SPC_ATT_MODEL_LEVEL");
            }
            llstCondtion.Add(Definition.CONDITION_KEY_USE_YN, "Y");
            //llstCondtion.Add(Definition.CONDITION_KEY_DEFAULT_COL, "Y");

            DataSet dsModelLevel = this._spcWebService.GetCodeData(llstCondtion.GetSerialData());

            if (DSUtil.CheckRowCount(dsModelLevel))
            {
                this._sSPCModelLevel = dsModelLevel.Tables[0].Rows[0][COLUMN.CODE].ToString();
            }

            //_sSPCModelLevel = Definition.CONDITION_KEY_EQP_MODEL;


            _btvCondition = btv;
            //_btvCondition.CheckCountType = BTreeView.CheckCountTypes.SingleByNode;
            btv.BeforeExpand += new TreeViewCancelEventHandler(Tree_BeforeExpand);
            btv.RefreshNode  += new BTreeView.RefreshNodeEventHandler(Tree_RefreshNode);
            btv.AfterExpand  += new TreeViewEventHandler(btv_AfterExpand);
            //modified by enkim SPC-599 -- change area multi --> check processcapabilitydata.cs(appliauthority[syntax error])
            //if (this._sSPCModelLevel.Equals(Definition.CONDITION_KEY_EQP_MODEL))
            //{
            btv.CheckCountType = BTreeView.CheckCountTypes.Single;
            //}
            //else
            //{
            //btv.CheckCountType = BTreeView.CheckCountTypes.Multi;
            //}
            //modified end SPC-599

            _btvCondition.ImageList.Images.AddRange(ImageLoaderHandler.Instance.TreeArrayImage);
            _btvCondition.AddImageForLevel(0, _btvCondition.ImageList.Images[0], _btvCondition.ImageList.Images[0]);
            _btvCondition.AddImageForLevel(1, _btvCondition.ImageList.Images[1], _btvCondition.ImageList.Images[1]);
            _btvCondition.AddImageForLevel(2, _btvCondition.ImageList.Images[2], _btvCondition.ImageList.Images[2]);
            _btvCondition.AddImageForLevel(3, _btvCondition.ImageList.Images[3], _btvCondition.ImageList.Images[3]);

            if (this._sSPCModelLevel.Equals(Definition.CONDITION_KEY_EQP_MODEL))
            {
                _btvCondition.AddImageForLevel(4, _btvCondition.ImageList.Images[4], _btvCondition.ImageList.Images[4]);
            }
        }
Example #16
0
        public PpkConditionSPCModel()
        {
            this._wsSPC      = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler = MultiLanguageHandler.getInstance();
            this._comUtil    = new CommonUtility();
            this.ppkDate     = new BISTel.eSPC.Condition.Controls.Date.PpkDateCondition();

            InitializeComponent();
            InitializeLayout();
        }
Example #17
0
 public void InitializePage()
 {
     this._ComUtil        = new CommonUtility();
     this._bSpreadUtil    = new BSpreadUtility();
     this._lang           = MultiLanguageHandler.getInstance();
     this._wsSPC          = new eSPCWebService.eSPCWebService();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
     this.InitializeLayout();
 }
        public void InitializePopup()
        {
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._Initialization = new Initialization();
            this._Initialization.InitializePath();
            this._wsSPC = new WebServiceController <eSPCWebService.eSPCWebService>().Create();

            this.Title               = Definition.POPUP_TITLE_SUMMARY_DATA_OPTION;
            this.tbxFab.Text         = _sfab;
            this.tbxFab.Enabled      = false;
            this.tbxLine.Text        = _sLine;
            this.tbxLine.Enabled     = false;
            this.tbxArea.Text        = _sArea;
            this.tbxArea.Enabled     = false;
            this.tbxEQPModel.Text    = _sEqpModel;
            this.tbxEQPModel.Enabled = false;
            this.tbxParam.Text       = _sParameter;
            this.tbxParam.Enabled    = false;

            if (_sEqpModel.Equals(""))
            {
                this.bapnlEqpModel.Visible = false;
                this.pnlBlank.Visible      = false;
            }

            bool isRecipeAll = false;

            if (!_isRecipeExist || _sRecipe.Equals("*"))
            {
                isRecipeAll = true;
            }

            if (_isStepExist && !isRecipeAll)
            {
                _isAllExist = true;
            }

            InitializeButtonList();
            InitializeSpread();

            if (!_isSelectedRawChange)
            {
                bsprResult.DataSet = _dsSummaryOptionResult;

                for (int i = 0; i < this.bsprResult.ActiveSheet.RowCount; i++)
                {
                    this.bsprResult.ActiveSheet.Cells[i, 0].Locked = false;
                }
            }

            LoadEqpChamberData();

            this.DialogResult = System.Windows.Forms.DialogResult.Cancel;
        }
        public void InitializePage()
        {
            this._wsSPC      = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler = MultiLanguageHandler.getInstance();

            this._ComUtil = new CommonUtility();

            this.InitializeDataButton();

            this.blblMinSampleCnt.Text = this._mlthandler.GetVariable(Definition.LABEL.MINSAMPLECNT);
        }
Example #20
0
        public SPCControlChartUC()
        {
            _wsSPC           = new BISTel.eSPC.Page.eSPCWebService.eSPCWebService();
            this._mlthandler = MultiLanguageHandler.getInstance();
            _dataManager     = new SourceDataManager();
            _Initialization  = new Initialization();
            this._Initialization.InitializePath();
            _llstSearchCondition = new LinkedList();

            InitializeComponent();
        }
Example #21
0
        ///////////////////////////////////////////////////////////////////////////////////
        //  PageLoad & Initialize.
        ///////////////////////////////////////////////////////////////////////////////////

        public void InitializeControl()
        {
            this._Initialization = new Initialization();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._Initialization.InitializePath();

            this._ws = new WebServiceController <eSPCWebService.eSPCWebService>().Create();

            this.ContentsAreaMinWidth  = 690;
            this.ContentsAreaMinHeight = 725;
        }
Example #22
0
        public SPCModelCompareCondition()
        {
            InitializeComponent();

            ws = new WebServiceController <eSPCWebService.eSPCWebService>().Create();

            InitializeComboTree();
            InitializeTreeView();

            this.ClickSearch += new ClickSearchEventHandler(SPCModelCompareCondition_ClickSearch);
        }
Example #23
0
        public SPCChartCondition_LED()
        {
            this._wsSPC             = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler        = MultiLanguageHandler.getInstance();
            this._comUtil           = new CommonUtility();
            this._Initialization    = new Initialization();
            this.strucContextList   = new SPCStruct.ChartConditionContextList();
            this.mllstCustomContext = new LinkedList();
            InitializeComponent();

            this.InitializePage();
        }
Example #24
0
 public void InitializeVariable()
 {
     this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
     this._bspreadutility  = new BSpreadUtility();
     this._ComUtil         = new CommonUtility();
     this._llstData        = new LinkedList();
     this.strucContextList = new SPCStruct.ChartConditionContextList();
     this.strucContextinfo = new SPCStruct.ChartContextInfo();
 }
Example #25
0
        public ModelCondition()
        {
            InitializeComponent();
            InitializePage();
            if (!DesignMode)
            {
                //Configuration.getInstance("http://localhost/ees" + "/Configuration/" + EESConstants.CONFIGURATION_FILE).URL = "http://localhost/ees";

                this._spcWebService = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
                _dtParam            = new DataTable();
            }
        }
Example #26
0
        private void InitializeVariables()
        {
            if (this._ws == null)
            {
                this._ws = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            }

            if (this._initialization == null)
            {
                this._initialization = new Initialization();
                this._initialization.InitializePath();
            }
        }
Example #27
0
        public void InitializePopup()
        {
            this._wsSPC          = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._mlthandler     = MultiLanguageHandler.getInstance();
            this._Initialization = new Initialization();
            this._Initialization.InitializePath();

            this._SpreadUtil = new BSpreadUtility();
            this._ComUtil    = new CommonUtility();

            this.InitializeBSpread();
            this.InitializeRuleData();
        }
 public void InitializePopup()
 {
     this._ws             = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
     this._mlthandler     = MultiLanguageHandler.getInstance();
     this._Initialization = new Initialization();
     this._Initialization.InitializePath();
     this._sOCAPOfSingle = this._Initialization.GetOCAPOfSingle(Definition.PAGE_KEY_SPC_CONFIGURATION);
     this.spcConfigurationUC.PageInfo(_SessionData.GetXml(), "", this.URL, this.PORT, "", "", "", "");
     this.InitializeLayout();
     this.InitializeConfigData();
     this.ContentsAreaMinHeight = 580;
     this.ContentsAreaMinWidth  = 780;
 }
Example #29
0
        internal DataTable GetSPCModelList(string sLineRawID, string sAreaRawID, string sEqpModel, string sParamAlias, string sParamTypeCd, bool useComma)
        {
            if (_ws == null)
            {
                _ws = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            }

            DataSet ds = _ws.GetSPCModelList(sLineRawID, sAreaRawID, sEqpModel, sParamAlias, sParamTypeCd, useComma);

            dtSPCModelList = MergeWithContextTable(ds.Tables[BISTel.eSPC.Common.TABLE.CHART_VW_SPC], ds.Tables[BISTel.eSPC.Common.TABLE.MODEL_CONTEXT_ATT_MST_SPC]);

            return(dtSPCModelList);
        }
Example #30
0
        public virtual void InitializePage()
        {
            _ws        = new WebServiceController <eSPCWebService.eSPCWebService>().Create();
            this._lang = MultiLanguageHandler.getInstance();
            InitializeVariables();

            InitializeSpread();

            if (IsVisibleBButtonList)
            {
                InitializeButtonList();
            }
        }