Hi,
I tried to use CDate for the change of time format from US: MM/DD/YYYY to DD/MM/YYYY in one form, where I state start date and end date in order to get all the records between these two days. I don't know, what I did wrong but it's still not working properly and I get records also out of the predefined interval
So I suppose the CDate conversion doesn't work for me
Any help would be highly appreciated! Thank you very much!
Ivan
I tried to use CDate for the change of time format from US: MM/DD/YYYY to DD/MM/YYYY in one form, where I state start date and end date in order to get all the records between these two days. I don't know, what I did wrong but it's still not working properly and I get records also out of the predefined interval



Code:
If Me.Starting_date_of_occurrence.Value > "" And Me.Finishing_date_of_occurrence.Value > "" Then
If Not (WhereString = "WHERE ") Then
WhereString = WhereString & " AND "
End If
start_date = CDate(Me.Starting_date_of_occurrence.Value)
end_date = CDate(Me.Finishing_date_of_occurrence.Value)
WhereString = WhereString & "(((MORs.[Date of occurrence])>=#" & start_date & "#) AND ((MORs.[Date of occurrence])<=#" & end_date & "#))"
End If
Ivan