Exemplo n.º 1
0
        public MainPage()
        {
            this.InitializeComponent();

            getken = new CS_GetkenAsync();

            textBox01.Text = "";
            textBox02.Text = "";

            ClearResultTextBox();			// 初期表示をクリアする
        }
Exemplo n.º 2
0
        public CS_LBLSubAsync()
        {   // コンストラクタ
            _wbuf = null;       // 設定情報無し
            _empty = true;
            _rem = null;
            _remark = false;

            wsupp = null;
            bufsup = null;
            getken = null;
            rsvwrd = null;
        }
Exemplo n.º 3
0
        private async Task SetGetkenAsync(String _strbuf)
        {   // トークン抽出を行う
            if (getken == null)
            {   // 未定義?
                getken = new CS_GetkenAsync();
            }

            if (_strbuf != null)
            {   // 評価有り?
                await getken.ClearAsync();
                await getken.ExecAsync(_strbuf);
                _wcnt = getken.Wcnt;

                if (_wcnt != 0)
                {   // トークン有り?
                    _array = new String[_wcnt];
                    for(int i=0; i<_wcnt; i++)
                    {   // 登録情報に対して、処理を行う。
                        _array[i] = getken.Array[i];
                    }
                }
            }
        }
Exemplo n.º 4
0
        public async Task ClearAsync()
        {   // 作業領域の初期化
            _wbuf = null;       // 設定情報無し
            _empty = true;
            _rem = null;
            _remark = false;

            wsupp = null;
            bufsup = null;
            getken = null;
            rsvwrd = null;
        }