One of the columns in my datagrid (dataGridView1) is called DatePaid and on button click i.e:
private void viewOverdue_Click(object sender, EventArgs e)
{
// details here
}I want it to show all rows in the datagrid that are 2 weeks or older in the DatePaid column (using the variable cRentStart as a starting point - which is a date in itself in the dd/mm/yyy format). All dates have to be in the format dd/mm/yyyy.