Ejemplo n.º 1
0
 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();
 }
Ejemplo n.º 2
0
        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();

        }