コード例 #1
0
ファイル: frmScriptView.cs プロジェクト: weimingtom/pap2
 private void btnFind_Click(object sender, EventArgs e)
 {
     if (theFindForm == null)
     {
         theFindForm = new ScriptFindForm();
         theFindForm.Init(m_conn, this.scriptTree1.AllScriptTreeNode);
         theFindForm.ListBoxDoubleClick += new doubleclickEventsHandle(OnListBoxDoubleClick);
     }
     theFindForm.Show();
 }
コード例 #2
0
ファイル: frmScriptView.cs プロジェクト: viticm/pap2
        private void btnFind_Click(object sender, EventArgs e)
        {           
            if (theFindForm == null)
            {
                theFindForm = new ScriptFindForm();
                theFindForm.Init(m_conn, this.scriptTree1.AllScriptTreeNode);
                theFindForm.ListBoxDoubleClick += new doubleclickEventsHandle(OnListBoxDoubleClick);
            }           
            theFindForm.Show();

        }