Пример #1
0
        /// <summary>
        /// Замена всего найденого
        /// </summary>

        private void button3_Click(object sender, EventArgs e)
        {
            //replace all
            blank  frm  = (blank)prnt.ActiveMdiChild;
            string what = lookFor.Text;
            string with = replaceWith.Text;

            frm.replaceAll(what, with, caseImp);
        }