I am trying to select all the records from the access db where startdate is greater than the one in the txt box but for some reason it gives me all the dates? heres the code...
DBComm.ActiveConnection = DBConn
DBComm.CommandText = "Select * from Schedule where ScheduleID = " & strID & " and StartDate > " & txtStartDate & " "
DBComm.CommandType = adCmdText
thanks...
DBComm.ActiveConnection = DBConn
DBComm.CommandText = "Select * from Schedule where ScheduleID = " & strID & " and StartDate > " & txtStartDate & " "
DBComm.CommandType = adCmdText
thanks...