RE: Date Function ???

2006-06-21 Thread Ben Forta
PROTECTED] Sent: Wednesday, June 21, 2006 3:42 PM To: CF-Talk Subject: RE: Date Function ??? #DateDiff("d", Now(), "01/01/2007")# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 3:37 PM To: CF-Talk Subject: Dat

Re: Date Function ???

2006-06-21 Thread Charlie Griefer
dateDiff()? http://livedocs.macromedia.com/coldfusion/7/htmldocs/0440.htm #dateDiff('d', now(), createDate(2007, 1, 1))# On 6/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > This should simple for a lot of you. What data function do I use to create a > countdown > for the number of D

RE: Date Function ???

2006-06-21 Thread Ben Forta
#DateDiff("d", Now(), "01/01/2007")# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 3:37 PM To: CF-Talk Subject: Date Function ??? This should simple for a lot of you. What data function do I use to create

Re: Date Function ???

2006-06-21 Thread Alan Rother
DateDiff("d", Now(), CreateDate(2007, 1, 1)) > > > -- > Alan Rother > Macromedia Certified Advanced ColdFusion MX 7 Developer ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244468 Archives: http://www.houseoffus

Date Function ???

2006-06-21 Thread coldfusion . developer
This should simple for a lot of you. What data function do I use to create a countdown for the number of DAYS left until January 1, 2007? Thanks. D ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244464 Archives: h

Re: Simple Date Function Question...at least I think it is.

2004-08-26 Thread Ewok
  WEEK IS EVEN   WEEK IS ODD   - Original Message -   From: Matthew Fusfield   To: CF-Talk   Sent: Thursday, August 26, 2004 4:54 PM   Subject: Re: Simple Date Function Question...at least I think it is.   Not a big deal, but that should actually be:        WEEK IS ODD        WEEK

RE: Simple Date Function Question...at least I think it is.

2004-08-26 Thread Greg Luce
#week(now())# - Odd #week(now())# - Even -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 4:49 PM To: CF-Talk Subject: Simple Date Function Question...at least I think it is. What would be the easiest way to write code to determine

RE: Simple Date Function Question...at least I think it is.

2004-08-26 Thread Che Vilnonis
interesting...if i had only remebered that there was a Week() function. i knew there had to be a simple answer. thanks Matt. -Original Message- From: Matthew Fusfield [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 4:53 PM To: CF-Talk Subject: Re: Simple Date Function Question

Re: Simple Date Function Question...at least I think it is.

2004-08-26 Thread Matthew Fusfield
Not a big deal, but that should actually be:   WEEK IS ODD   WEEK IS EVEN (if the remainder is 0, it is an even number. If it has a remainder, than it is odd) Matt On Thu, 26 Aug 2004 16:52:55 -0400, Matthew Fusfield <[EMAIL PROTECTED]> wrote: > Try something like this: > > >    WEEK IS EVE

Re: Simple Date Function Question...at least I think it is.

2004-08-26 Thread Matthew Fusfield
Try something like this:    WEEK IS EVEN    WEEK IS ODD Matt On Thu, 26 Aug 2004 16:48:44 -0400, Che Vilnonis <[EMAIL PROTECTED]> wrote: > What would be the easiest way to write code to determine whether the current > week of the year is even or odd? > I am looking to display two different gr

Simple Date Function Question...at least I think it is.

2004-08-26 Thread Che Vilnonis
What would be the easiest way to write code to determine whether the current week of the year is even or odd? I am looking to display two different groups of images, each group being displayed every other week. Thanks, Che [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: date function help for calendar

2004-01-19 Thread Thomas Chiverton
On Friday 16 Jan 2004 16:29 pm, Smith, Matthew P -CONT(CSC) wrote: > view to default to the current week.  So using the now() function, I need > to find the, say, Sunday before and the Saturday after the current day. If dayToday is not dayToLookFor while dayToday is not dayTolookfor( add one d

RE: date function help for calendar

2004-01-16 Thread Ian Skinner
Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA -Original Message- From: Smith, Matthew P -CONT(CSC) [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 8:30 AM To: CF-Talk Subject: date function help for calendar I'm doing a scheduler

date function help for calendar

2004-01-16 Thread Smith, Matthew P -CONT(CSC)
I'm doing a scheduler app for our intranet. I have a little problem, nothing major, but I thought I would shoot it out here before I get all jiggy with the date functions.  Basically, I want the view to default to the current week.  So using the now() function, I need to find the, say, Sunday be

Re: Date function

2002-09-04 Thread Jerry Johnson
dateformat(dateadd("m",-1,now())," ") Jerry Johnson >>> [EMAIL PROTECTED] 09/03/02 06:42PM >>> Hi there. I am trying to find out what this month minus one is. I used DateFormat(Now()-30, " ") and it works ok, but I worry that on certain days it wont work. Is there a way to subtr

Re: Date function

2002-09-04 Thread Randell B Adkins
#Dateformat(DateAdd('m', -1, Now()), 'mm/dd/')# >>> [EMAIL PROTECTED] 09/03/02 06:42PM >>> Hi there. I am trying to find out what this month minus one is. I used DateFormat(Now()-30, " ") and it works ok, but I worry that on certain days it wont work. Is there a way to subtract a mon

RE: Date function

2002-09-04 Thread Robert Everland
dateadd("m", -1, now()) Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 6:43 PM To: CF-Talk Subject: Date function H

RE: Date function

2002-09-04 Thread Dave Wilson
DateAdd(m, -1, Now()) __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/c

Date function

2002-09-04 Thread Candace Cottrell
Hi there. I am trying to find out what this month minus one is. I used DateFormat(Now()-30, " ") and it works ok, but I worry that on certain days it wont work. Is there a way to subtract a month from Now() instead of subtracting days? TIA (I love this list by the way) Candace K. Cottre

RE: Date function

2002-07-29 Thread Ben Doom
e- : From: Matthew Walker [mailto:[EMAIL PROTECTED]] : Sent: Monday, July 29, 2002 1:04 AM : To: CF-Talk : Subject: RE: Date function : : : You should have the field type in the database as datetime. That might : fix it. : : If not then it's because LSParseDateTime() works on human dates, so

RE: Date function

2002-07-28 Thread Matthew Walker
ED]] > Sent: Monday, 29 July 2002 3:51 p.m. > To: CF-Talk > Subject: Date function > > > The function > > ArticleDate = CreateODBCDate(LSParseDateTime(ArticleDate)) > > is working well processing a form field with dates. > > However when I try an CFinsert

Date function

2002-07-28 Thread NZERN National Office
The function ArticleDate = CreateODBCDate(LSParseDateTime(ArticleDate)) is working well processing a form field with dates. However when I try an CFinsert to move this date from one table to another the following error message comes. the field type is nvarchar the ISP has SQL 7.0 with CFserve

RE: Date Function

2002-02-28 Thread Jim Curran
-Original Message- From: Joel Blanchette [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 3:18 PM To: CF-Talk Subject: RE: Date Function Yeah basically...Like tomorrow when the scheduler execute the script I need it to say if today is 1st of the month, the day before was

RE: Date Function

2002-02-28 Thread Raymond Camden
ly is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Joel Blanchette [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 28, 2002 3:18 PM > To: CF-Talk > Subject: RE: Date Function > > > Yeah basically...Like tomorrow when

RE: Date Function

2002-02-28 Thread Steve Oliver
ormat(Variables.yesterday,"mm/dd/")# _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Joel Blanchette [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 3:11 PM To: CF-Tal

RE: Date Function

2002-02-28 Thread Joel Blanchette
: Date Function I'm sorry, I'm not sure what you are asking. Are you asking how to get the previous day's date? Kathryn Butterly Web Developer Washington Mutual Finance 813 632-4490 [EMAIL PROTECTED] -Original Message- From: Joel Blanchette [mailto:[EMAIL PROTECTED]]

RE: Date Function

2002-02-28 Thread Raymond Camden
gineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Joel Blanchette [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 28, 2002 3:11 PM > To: CF-Talk > Subje

RE: Date Function

2002-02-28 Thread kbutterly
ay, February 28, 2002 3:11 PM To: CF-Talk Subject: Date Function Hello All, Here is a good one. I have been thinking about this for a while and I can not figure it out! I am doing a schedule thing and I need to see if let's say at the time it goes, if we are the 1st of the month to get y

Date Function

2002-02-28 Thread Joel Blanchette
Hello All, Here is a good one. I have been thinking about this for a while and I can not figure it out! I am doing a schedule thing and I need to see if let's say at the time it goes, if we are the 1st of the month to get yesterday's date. So I cab take that and format it with dateforma

Re: date function

2000-06-12 Thread Chris Giminez
Use the dateformat function #dateformat(date," d ")# Chris Giminez Owner - Cyber Scriber Web Site Design 831-728-4469 ICQ# 2628000 > > > I have a source that is outputting dates in this format: > > 26-May-2000 10:55:16 -0500 > > It doesn't seem that any of CF's date functions want t

date function

2000-06-06 Thread Adam Cantrell
This is a multi-part message in MIME format. --=_NextPart_000_00C6_01BFCF09.72BC94C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have a source that is outputting dates in this format: 26-May-2000 10:55:16 -0500 It doesn't seem that

Re: Odd date function behavior

2000-04-24 Thread Howie Hamlin
ldFusion, iHTML, Website, NTMail Latest versions available from our web site (inFusion Authenticator version 2.0 for WebSite and NTMail is now released) - Original Message - From: Jeff Beer <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 24, 2000 11:25 AM Subject:

Odd date function behavior

2000-04-24 Thread Jeff Beer
Hello all, Using the following cfset olddate = DateFormat(DateAdd("d", -30, Now())) works as expected. What's odd is the original code was written like this: cfset olddate = DateFormat(DateAdd("d", Now(), -30)) This didn't produce an error, either in the cfset, or in the qu