Beispiel #1
0
 private void rtbData_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Modifiers == Keys.Control && e.KeyCode == Keys.F)
     {
         find       = new frm_findcs(this, rtbData.SelectedText);
         find.Owner = this;
         find.Show();
     }
     else
     {
         CurrentLine();
     }
 }
Beispiel #2
0
 private void tslbl_notok_Click(object sender, EventArgs e)
 {
     find       = new frm_findcs(this, "NOT OK");
     find.Owner = this;
     find.Show();
 }
Beispiel #3
0
 private void tssb_find_ButtonClick(object sender, EventArgs e)
 {
     find       = new frm_findcs(this, rtbData.SelectedText);
     find.Owner = this;
     find.Show();
 }