Ask a Question related to Dreamweaver AppDev, Design and Development.
-
illufox #1
Past Dates still showing
I have a calendar page which displays only current dates, no past dates and
contains a search field where people can search for any field in the database.
Wile the calendar doesn't display any past dates, the search result page does.
I need to get rid of this but when I use the same code piece ('Date_S >=
Date()') I used for the calendar page it doesn't work. The page seems to
completely ignore the date comparison piece of code although it works just fine
in the calendar page. What am I doing wrong?
Recordset1.Source = "SELECT IdMeeting, Date_S, EventName, Location,
ProjectLead, Status, TypeOfMeeting, MarketingLead, Industry, ADDStaff FROM
Meeting
WHERE Industry LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR EventName LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR Location LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR ProjectLead LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR Status LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR TypeOfMeeting LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR MarketingLead LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR TypeOfMeeting LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
OR ADDStaff LIKE '%" + Replace(Recordset1__MMColParam, "'", "''") + "%'
AND Date_S >= Date()
ORDER BY Date_S ASC"
illufox Guest
-
How to prevent past dates from showing
I had the same question and have tried the above. The test works fine, but it shows all the dates incl. the past. How do I define the current date... -
Past PDF files within filemaker
I used to get client leads sent to me in e-mail format which I would cut and paste into a field that would keep the original e-mail. I am now... -
[PHP] Need help - past deadline
Jay Fitzgerald <mailto:jayfitz@bayou.com> on Tuesday, August 26, 2003 10:40 AM said: ... -
need help - past deadline
can someone please look at my code below and tell me why it is only working half-way? It is only displaying radio buttons and seats for numbers 71,... -
please help past deadline
can someone please look at my code below and tell me why it is only working half-way? It is only displaying radio buttons and seats for numbers 71,... -
Julian Roberts #2
Re: Past Dates still showing
You ought to group the OR operators. eg
where (a=1 or b=2) and d>=date()
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
illufox #3
Re: Past Dates still showing
Wow, this works! ...so simple but so effective!
Thanks a bunch!!! :)
illufox Guest



Reply With Quote

