|
rdouglass -> RE: Multiple Date formats saved to one DB column (4/3/2008 15:43:19)
|
quote:
The work around is the pull a start date to an end date on the day after you need it I'd try working off that just a little more. Why not set the end date to the next day at just after midnight and subtract 1 second from it? Would that work? selection2 = DateAdd("s",-1,DateAdd("d",1,FormatDateTime(request.form("EndDate2"),VbShortDate))) I think that's what you'd use. That should get you to 11:59:59 PM on that last date. That help any?quote:
selection2 = DateValue(request.form("EndDate2"))
|
|
|
|