没有搜索结果没有弹出消息窗口

时间:2014-07-15 15:04:21

标签: c# visual-studio-2010

我在我的软件中写了一个搜索功能 当搜索结果时。它没有给我任何弹出窗口或任何消息。如何应对这种情况 我的代码如下。

我需要弹出任何消息,一旦它显示我的表中没有数据。

   private void button4_Click(object sender, EventArgs e)
    {
       try
       {
            this.cncInfoTableAdapter.SearchFileName(this.cncDataSet1.CncInfo, textBox1.Text);
        }
       catch (Exception ex)
        {
            MessageBox.Show("No records Found " + ex.Message);
        }
    }

timer1_Tick(??)的代码:

int count = 0;
private void timer1_Tick(object sender, EventArgs e) {
    count = cncInfoBindingSource.Count;
    label_status.Text = "Records Found: "+count.ToString();
    if (count < 2) {
        Next_btn.Visible = false;
        Previous_btn.Visible = false;
    } else {
        Next_btn.Visible = true;
        Previous_btn.Visible = true;
    }
}

请咨询 感谢

0 个答案:

没有答案