テキスト検索機能を使用して検索フォームを作成しました。最後の検索を保存して、フォームを再度開いたときに [再検索] ボタンを作成するにはどうすればよいですか?
検索用の私のコードは次のとおりです。
private void btnSearch_Click(object sender, EventArgs e)
{
if (cboField.SelectedIndex == -1)
{
return;
}
if (txtValue.TextLength == 0)
{
return;
}
string filter;
filter = "[" + cboField.Text + "]";
filter += lblOperation.Text + "'" + txtValue.Text + "'";
try
{
peopleBindingSource.Filter = filter;
}
catch (System.Data.EvaluateException)
{
MessageBox.Show("Please enter valid values in your text fields.");
}
}