标签: c# datagridview
我只想编写一个显示今天到来的按钮。
con.Open(); da = new SqlDataAdapter("SELECT * FROM Sales Where SaleTime Like '"+ dateTimePicker1.Value +"'",con); DataSet ds = new DataSet(); da.Fill(ds); SalesGridView.DataSource = ds; con.Close();`