Hi kankon,
In order to hide the old date data you need to add where condition to filter with date greater than equals to todats date in the select statement.
DataSet1 dsCustomers = GetData("SELECT id, date, metting, whiwhois, location, time, note FROM dbo.Manager");
Replace above with below.
DataSet1 dsCustomers = GetData("SELECT id, date, metting, whiwhois, location, time, note FROM dbo.Manager WHERE date >= CAST(GETDATE() AS DATE)");