Question : Date conversion for reports

I am having trouble with U.S date format.

I am creating a report that is based on last weeks date rante (#24/05/2009# And #01/06/2009#).  The report generates a query on the fly that has all of the necessary records.  However, for some reason it is switching the last date around (to U.S format).

I send the string the the immediate pane to check it and it looks perfect.  however, when I copy it into a blank query to take a look, the second date is the wrong way roung (for the UK).  I have tried switching the mm/dd string around but still get the same results.

Any suggestions?
Code Snippet:
1:
2:
3:
4:
5:
Dim datStart As Date
datStart = CDate(Format(Forms![Report list]![Report list - Sub].Form.Controls![TBStartDate], "mm/dd/yyyy"))
 
Dim datEnd As Date
datEnd = CDate(Format(Forms![Report list]![Report list - Sub].Form.Controls![TBEndDate], "mm/dd/yyyy")) + 1
Open in New Window Select All

Answer : Date conversion for reports

Random Solutions  
 
programming4us programming4us