Exemple #1
0
        public static FormSearch CreateForm(Scintilla editor)
        {
            FormSearch r = null;

            VgcApis.Misc.UI.Invoke(() =>
            {
                r = new FormSearch(editor);
                r.Show();
            });

            return(r);
        }
Exemple #2
0
        public static FormSearch CreateForm(Scintilla editor)
        {
            FormSearch r = null;

            Misc.UI.Invoke(() =>
            {
                r = new FormSearch(editor);
                r.Show();
                r.Activate();
                r.cboxSearchKeyword.Focus();
            });

            return(r);
        }