Dear Sir!
Your help it's welcome. I am using a MS acess file.
I would love to make a very simple filter between two dates in my rdlc reportview.
In my XSD file I do try this: select * name, dateentry from personel where between dateentry ? and ? = ?
After that on my rptForm on my button I write this
private void btnPersonel_Click(object sender, EventArgs e)
{
this.Personel.Fill(this.PersonelDS.Personel, txtDateEntry.Text);
this.rptPersonel.RefreshReport();
}
But it's doesnt works!