Esempio n. 1
0
        public bool GetCommand(string s)
        {
            bool ret = false;

            if (CPPl_remover.IsAepFile(s) == true)
            {
                if (cppl.CheckAep(s) == true)
                {
                    if (cppl.ListSize <= 4)
                    {
                        edProgress.AppendText("\r\n*** 削除済みです ***\r\n");
                        edAep.Text = "";
                    }
                    else
                    {
                        edAep.Text = s;
                        ret        = true;
                    }
                }
            }
            return(ret);
        }
Esempio n. 2
0
 private void edAep_TextChanged(object sender, EventArgs e)
 {
     btnExec.Enabled = CPPl_remover.IsAepFile(edAep.Text);
 }