2012-12-16 55 views
-2

時,我只是想搜索字符串在我ListBox和我原本以爲它幾乎拍下來,直到我來到了這個問題:NotImplementedException搜索列表框

類型的未處理的異常「System.NotImplementedException '發生在* * .exe

附加信息:該方法或操作未實現。

這裏是我的一段代碼:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Threading.Tasks; 
using System.Windows.Forms; 

namespace ***** 
{ 
    public partial class Form1 : Form 
    { 
     public Form1() 
     { 
      InitializeComponent(); 
     } 

     private void button1_Click(object sender, EventArgs e) 
     { 
      add(); 
     } 

     private void button2_Click(object sender, EventArgs e) 
     { 
      search(); 
     } 
     public void search() 
     { 
      if (textBox2.Text == string.Empty) 
      { 
       MessageBox.Show("Must enter value"); 
      } 
      else 
      { 
       string toFind = textBox2.Text; 
       if (toFind != string.Empty) 
       { 
        int search = listBox1.FindString(toFind); 
        if (search != -1) 
        { 
         listBox1.SetSelected(search, true); 
        } 
        else 
        { 
         MessageBox.Show("Could not find "+toFind); 
        } 
       } 
      } 
     } 
     public void add() 
     { 
      if (textBox1.Text == string.Empty) 
      { 
       MessageBox.Show("Must enter value"); 
      } 
      else 
      { 
       listBox1.Items.Add(textBox1.Text); 
      } 
      textBox1.Clear(); 
     } 
     private void textBox1_KeyDown(object sender, KeyEventArgs e) 
     { 
      if(e.KeyCode == Keys.Enter) 
      { 
       add(); 
      } 
     } 
     private void textBox2_KeyDown(object sender, KeyEventArgs e) 
     { 
      if (e.KeyCode == Keys.Enter) 
      { 
       search(); 
      } 
     } 

    } 
} 
+0

在其中不錯誤發生線? – Ryan

+2

請把完整的異常堆棧,不只是最後/第一行 –

+0

@SimonMourier我沒有發佈整個例外... – g0d

回答

0

搜索你的整個項目如下:

throw new NotImplementedException(); 

並做評論它;)

+0

感謝它的工作!不完全確定爲什麼它工作時,我評論它...我發佈之前刪除它,仍然有同樣的問題...謝謝反正! – g0d

+0

好吧,也許你將你的項目構建爲Release,但啓動了較早的Debug或反之亦然 – VladL