我有一个DataGridView,我想显示特定时间的日期。这是我的代码。
If con.State = ConnectionState.Closed Then
con.Open()
End If
Dim rs As New OleDb.OleDbDataAdapter("Select * from tblListDates WHERE reserveDate >=#" & CDate(lblFrom.Text) & "# or reserveDate <=#" & CDate(lblTo.Text) & "# ORDER BY ID", con)
Dim Dt As New DataTable
rs.Fill(Dt)
DataGridView1.DataSource = Dt
If con.State = ConnectionState.Open Then
con.Close()
End If
假设我的标签(lblFrom.text =星期日,2014年10月12日01:00 AM)和 label(lblTo.text = 2014年10月13日星期一01:30 AM)。但是日期(2014年10月13日星期一上午10:30)显示,即使它不在我的范围日期中。我的代码有问题吗?请帮我。提前谢谢。