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();
        }
Beispiel #2
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();
        }
Beispiel #3
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();
            this.InitializeDataButton();
            this.InitializeBSpread();
        }
Beispiel #4
0
        public void InitializePage()
        {
            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._bUseComma = AppConfiguration.GetConfigValue(Definition.PATH_ESPC, Definition.PATH_SPC_MODELING, Definition.CONFIG_USE_COMMA, false);
        }