У меня возникла проблема при выполнении 3-й лабораторной по ИСРИС, может кто поможет. Ввожу для кнопки поиска в обработчик событий такой код, но почему-то по некоторым полям не работает поиск private void button1_Click(object sender, EventArgs e)
{
string f = "";
if (textBox1.Text != "")
f += "(OGRN = " + textBox1.Text + ") and ";
if (textBox2.Text != "")
f += "(INN = " + textBox2.Text + ") and ";
if (textBox3.Text != "")
f += "(NumLic '" + textBox3.Text + " ') and ";
if (textBox4.Text != "")
f += "(NameLicOrg '" + textBox4.Text + " ') and ";
if (textBox5.Text != "")
f += "(NameVidLic '" + textBox5.Text + " ') and ";
if (textBox6.Text != "")
f += "(NameSostLic '" + textBox6.Text + " ') and ";
f += "(DtStart <= '" + dateTimePicker1.Text +
"') and ((DtEnd is null) or (DtEnd >= '" + dateTimePicker1.Text + "'))";
MessageBox.Show(f);
uLBindingSource.Filter = f;