我在我的软件中写了一个搜索功能 当搜索结果零时。它没有给我任何弹出窗口或任何消息。如何应对这种情况 我的代码如下。
我需要弹出任何消息,一旦它显示我的表中没有数据。
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;
}
}
请咨询 感谢