コード例 #1
0
        private void mnuEditSearch_Click(object sender, EventArgs e)
        {
            FormSearch   dlg = new FormSearch();
            DialogResult ret = dlg.ShowDialog();

            if (ret == DialogResult.OK)         // 착한 사용자인 경우
            {
                strSearch = dlg.sSearch;        // 찾을 문자열
                Search_Scroll(strSearch);
            }
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: o0o-jihyun/IoT2021-kosta
        private void mnuEditSearch_Click(object sender, EventArgs e)
        {
            FormSearch   dlg    = new FormSearch();
            DialogResult result = dlg.ShowDialog();

            if (result == DialogResult.OK)
            {
                strSearch = dlg.sSearch;

                SearchnScroll(strSearch);
            }
        }