Mfwamba Tshimanga

Mfwamba Tshimanga

  • NA
  • 155
  • 43.7k

on my rdlc file...

Dec 22 2014 7:33 PM
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!