Re: Time Calculations

2006-02-27 Thread Charlie Griefer
returns a date/time value rather than an integer value, > >this threw me off for a while recently. > > > >-- Josh > > > > > > > > > >- Original Message - > >From: "Eric Lackey" <[EMAIL PROTECTED]> > >To: "CF-Tal

Re: Time Calculations

2006-02-27 Thread Love Sponge
gt; >- Original Message - >From: "Eric Lackey" <[EMAIL PROTECTED]> >To: "CF-Talk" >Sent: Monday, February 27, 2006 10:39 AM >Subject: RE: Time Calculations > > >> ~~

Re: Time Calculations

2006-02-27 Thread Bryan Stevenson
Those are your start and end timesyou set start before the task begins and set end when it's done. Perhaps I'm mis-reading you? Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [E

Re: Time Calculations

2006-02-27 Thread Josh Nathanson
- Original Message - From: "Eric Lackey" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, February 27, 2006 10:39 AM Subject: RE: Time Calculations > As long as it's a valid date/time object, ColdFusion can give you the > difference. > >

RE: Time Calculations

2006-02-27 Thread Ian Skinner
DateParse, turns a date string into a date object, one can then dateDiff the objects. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - "C code. C code run. Run code run. Please!" - Cynthia

RE: Time Calculations

2006-02-27 Thread Eric Lackey
As long as it's a valid date/time object, ColdFusion can give you the difference. The number of seconds since then is #DateDiff('s',now(),dteThen)# -Original Message- From: Love Sponge [mailto:[EMAIL PROTECTED] Sent: Monday, February 27, 2006 11:37 AM To: CF-Talk Su

Re: Time Calculations

2006-02-27 Thread Love Sponge
Sent: Monday, February 27, 2006 11:29 AM >To: CF-Talk >Subject: Re: Time Calculations > >Could you be a bit more specific, getTickCount()seem to be ignoring the >time I entered as start and end times I entered for testing.

Re: Time Calculations

2006-02-27 Thread Charlie Griefer
getTickCount() isn't what you want if you are trying to manually set start/end times. check the docs for dateDiff() On 2/27/06, Love Sponge <[EMAIL PROTECTED]> wrote: > Could you be a bit more specific, getTickCount()seem to be ignoring the time > I entered as start and end times I entered for t

RE: Time Calculations

2006-02-27 Thread Eric Lackey
=ColdFusion_Documentation&file=0440.htm -Original Message- From: Love Sponge [mailto:[EMAIL PROTECTED] Sent: Monday, February 27, 2006 11:29 AM To: CF-Talk Subject: Re: Time Calculations Could you be a bit more specific, getTickCount()seem to be ignoring the time I entered as start and end tim

Re: Time Calculations

2006-02-27 Thread Love Sponge
Could you be a bit more specific, getTickCount()seem to be ignoring the time I entered as start and end times I entered for testing. Could it be using system time instead? > > >do a bunch of stuff > > > > (in milliseconds) > >Bryan Stevenson B.Comm. >VP & Director of E-Commerce Development >Ele

Re: Time Calculations

2006-02-27 Thread Bryan Stevenson
do a bunch of stuff (in milliseconds) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: "Love

Re: Time Entry code

2006-02-06 Thread John Wilker
I wrote a time management app a long time ago and have since then been updating/upgrading it. Time entry, department breakdown, reporting, invoicing. my site has some screenshots. If you'd like a demo login let me know. I'll be setting it up for demo accounts this week I think. http://www.red-om

RE: Time zone issue

2006-01-12 Thread Brad Wood
o: CF-Talk Subject: Re: Time zone issue daylight savings perhaps on the OS? There is no time zone stuff in CF - it comes from the host On 1/12/06, Brad Wood <[EMAIL PROTECTED]> wrote: > I am running CF MX 7.01 on linux. My time zone in telnet (both os and > hardware) is set to CST,

Re: Time zone issue

2006-01-12 Thread John Beynon
daylight savings perhaps on the OS? There is no time zone stuff in CF - it comes from the host On 1/12/06, Brad Wood <[EMAIL PROTECTED]> wrote: > I am running CF MX 7.01 on linux. My time zone in telnet (both os and > hardware) is set to CST, but the now() function returns EST. > > WHY??? > > I

Re: Time zone issue

2006-01-12 Thread Paul Hastings
Brad Wood wrote: > Is this from java? How do I change? yes that's from the JVM. if it's a shared host, you probably won't be allowed if that's the correct tz (or you shouldn't) but try setDefault(tz) off that same java class. if you need to cast between tz, etc. have a look at http://www.sus

RE: Time zone issue

2006-01-12 Thread Brad Wood
Oh yeah, when I run TimeZone: #tz.getDisplayName()# (#tz.getID()#) It says I am in the America/New_York time zone. Is this from java? How do I change? -Original Message- From: Brad Wood Sent: Thursday, January 12, 2006 10:55 AM To: CF-Talk Subject: Time zone issue I am ru

Re: Time Calculation

2006-01-09 Thread Michael Traher
Use the createtime(hh,mm,ss) function so that CF creates a proper time variable. so you can then use any if the date/time functions on these variables. HTH Mike On 1/9/06, Love Sponge <[EMAIL PROTECTED]> wrote: > > I am developing a form where the user selects a start and end time from a >

Re: Time Block

2005-11-01 Thread Matt Robertson
I wrote and posted cf_Blackout in the devex years ago. Feed it a time range and it blacks you out for that range. Its smart enough to cross midnight (i.e. it understands and 11pm to 6 am blackout). Here's a very slightly revised version of the posted code.

Re: Time Block

2005-10-31 Thread Roberto Perez
At 09:22 AM 10/31/2005, Justin D. Scott wrote: > Perhaps one of the fields from >the DB has an invalid value such as a null or blank string or something? If >you post the error here it may help uncover the issue. I did more "narrowing down" to see where the problem was exactly. I replaced all

Re: Time Block

2005-10-31 Thread Roberto Perez
At 09:22 AM 10/31/2005, you wrote: >The code looks fine as far as I can tell. Perhaps one of the fields from >the DB has an invalid value such as a null or blank string or something? If >you post the error here it may help uncover the issue. When I print the values on the screen, all fields ha

RE: Time Block

2005-10-31 Thread Justin D. Scott
> but that threw a nonspecified error, and the CFSET > tag would only be processed if I enclosed the portion > after the EQUAL sign within quotes (which obviously > converted it to a string). Any ideas on how to code > this part so that it works? The code looks fine as far as I can tell. Perh

RE: Time Block

2005-10-31 Thread Roberto Perez
At 11:09 PM 10/30/2005, Justin Scott wrote: >If you do it the way you're doing it, you're comparing strings, not date >objects. You should take the fields you get from the DB and use >createDateTime() to create a CF datetime object, then compare that to now() >instead of comparing strings. Thank

RE: Time Block

2005-10-30 Thread Justin D. Scott
If you do it the way you're doing it, you're comparing strings, not date objects. You should take the fields you get from the DB and use createDateTime() to create a CF datetime object, then compare that to now() instead of comparing strings. -Justin Scott > I'm trying to implement that solut

RE: Time Block

2005-10-30 Thread Roberto Perez
At 05:17 PM 10/28/2005, Bobby Hartsfield" wrote: >Even easier, once you have the dates just check to see if now() is > >A) GTE EndDateTime OR LTE StartDateTime >B) GTE StartDateTime AND LTE EndDateTime > >A being true means grant access >B being true means deny access Hey, I'm trying to impleme

RE: Time Block

2005-10-28 Thread Bobby Hartsfield
. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 1:52 PM To: CF-Talk Subject: RE: Time Block > Hi. I trying create a function in this format: > IsBlockedTime(startdayofweek,starthour, start

RE: Time Block

2005-10-28 Thread Justin D. Scott
> Hi. I trying create a function in this format: > IsBlockedTime(startdayofweek,starthour, startminute, > enddayofweek, endhour,endminute) This should be simple... Once you have the values, create datetime objects using createDateTime() and then use the DateDiff() function against those and now()

RE: Time management

2005-10-11 Thread Dawson, Michael
y don't realize there is no real business justification or the amount of resources used to create the application far outweigh the ROI. M!ke -Original Message- From: Webmaster at FastTrack On Line [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 5:58 PM To: CF-Talk Subject: Re:

Re: Time management

2005-10-11 Thread Webmaster at FastTrack On Line
Hi Donna, Number 1, don't have people coming to your desk if you can at all help it. Tell them all requests for change have to be at least emailed, better still sent to you on a form. Get buy in to your need to manage your time from your line manager or you are really up there without a paddle

Re: Time management

2005-10-11 Thread Tanguy Rademakers
>I've taken a couple weeks off and have been getting things here at >home organized which has made me realize how UNorganized things at the >office are. There are upgrades to the existing site that I want to >implement but get caught up in the day-to-day grind of getting things >done that are a mus

Re: Time management

2005-10-11 Thread Josh Nathanson
Hello Donna, check out my shared calendar application at http://www.calabunga.com - allows you to set up and share calendars online. If you need to get a group of people to coordinate schedules it is especially helpful. - Original Message - From: "Donna French" <[EMAIL PROTECTED]> To:

Re: time zone correction

2005-09-28 Thread Paul Hastings
Tim Laureska wrote: > In my area yes, but as you say there would need to be DST adjustments > for other locales and the usual answer http://www.sustainablegis.com/projects/tz/testTZCFC.cfm ~| Logware (www.logware.us): a new and c

RE: time zone correction

2005-09-28 Thread Tim Laureska
In my area yes, but as you say there would need to be DST adjustments for other locales -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 10:37 AM To: CF-Talk Subject: Re: time zone correction Ryan Guill wrote: > sorry for such a br

Re: time zone correction

2005-09-28 Thread Paul Hastings
Ryan Guill wrote: > sorry for such a breif answer, I was actually in the middle of > something but since it was so easy to give you that little bit of help > I just posted it real quick. > > Heres a better answer: > > dateAdd("hh",3,now()) and is everybody using DST? ~~~

Re: time zone correction

2005-09-28 Thread Ryan Guill
> > Heres a better answer: > > dateAdd("hh",3,now()) > > > On 9/28/05, Tim Laureska <[EMAIL PROTECTED]> wrote: > > Thanks Ryan... I'll check that out > > > > -Original Message- > > From: Ryan Guill [mailto:[EMAIL PROTECTED] > > S

Re: time zone correction

2005-09-28 Thread Ryan Guill
... I'll check that out > > -Original Message- > From: Ryan Guill [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 28, 2005 10:10 AM > To: CF-Talk > Subject: Re: time zone correction > > dateadd() > > http://livedocs.macromedia.com/coldfusion/7/htmldo

RE: time zone correction

2005-09-28 Thread Tim Laureska
Thanks Ryan... I'll check that out -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 10:10 AM To: CF-Talk Subject: Re: time zone correction dateadd() http://livedocs.macromedia.com/coldfusion/7/htmldocs/0437.htm On 9/28/05

Re: time zone correction

2005-09-28 Thread Ryan Guill
dateadd() http://livedocs.macromedia.com/coldfusion/7/htmldocs/0437.htm On 9/28/05, Tim Laureska <[EMAIL PROTECTED]> wrote: > The web server I'm using is on the west coast of US...we're on the east > coast > > Obviously there is a time zone difference, which I'm trying to address.. > > Need

Re: time conversion

2005-06-09 Thread Charlie Griefer
... :D On 6/9/05, Barney Boisvert <[EMAIL PROTECTED]> wrote: > The noon hour is PM, but you don't add 12 to it to make miliary time. > And you need EQ not = in there. > > cheers, > barneyb > > On 6/9/05, Charlie Griefer <[EMAIL PROTECTED]> wrote: > > assuming: > > > > > > > > > > > > > >

Re: time conversion

2005-06-09 Thread Barney Boisvert
The noon hour is PM, but you don't add 12 to it to make miliary time. And you need EQ not = in there. cheers, barneyb On 6/9/05, Charlie Griefer <[EMAIL PROTECTED]> wrote: > assuming: > > > > > > > > > > -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/

Re: time conversion

2005-06-09 Thread Charlie Griefer
assuming: On 6/9/05, Jeremy Bunton <[EMAIL PROTECTED]> wrote: > I have a form that collects 3 pieces of time data each as separate form > vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that > to military time so here 15:04. I have looked at createtime() but i

Re: time conversion

2005-06-09 Thread Nathan Strutz
Time format it. Something like: timeFormat("#form.hour#:#form.minute# #form.ampm#", "HH:mm") -nathan strutz http://www.dopefly.com/ Jeremy Bunton wrote: > I have a form that collects 3 pieces of time data each as separate form > vars. Hour, min and AM/PM in the format of 03 04 PM. I need to con

Re: time conversion

2005-06-09 Thread Barney Boisvert
if (am_pm EQ "am" AND hour EQ 12) hour = 0; else if (am_pm EQ "pm" AND hour NEQ 12) hour = hour + 12; militaryTime = hour & minute; cheers, barneyb On 6/9/05, Jeremy Bunton <[EMAIL PROTECTED]> wrote: > I have a form that collects 3 pieces of time data each as separate form > vars. Hour, min

Re: Time Entry code

2005-02-08 Thread Chris Tilley
sting excel sheet into the database. of course there will be a need for > modifying the excel to meet the database schema. > > -Original Message- > From: Troy Simpson [mailto:[EMAIL PROTECTED] > Sent: Monday, February 07, 2005 1:24 PM > To: CF-Talk > Subject: Re: T

RE: Time Entry code

2005-02-07 Thread Eric Creese
07, 2005 1:24 PM To: CF-Talk Subject: Re: Time Entry code Chris, Was'up... Use ColdFusion Components and with a Flash MX front end. Sorry, but I have no code to share though. Troy On Mon, 7 Feb 2005 13:06:17 -0500, Chris Tilley <[EMAIL PROTECTED]> wrote: > My client would l

RE: Time Entry code

2005-02-07 Thread Eric Creese
-Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED] Sent: Monday, February 07, 2005 1:24 PM To: CF-Talk Subject: Re: Time Entry code Chris, Was'up... Use ColdFusion Components and with a Flash MX front end. Sorry, but I have no code to share though. Troy On Mon,

Re: Time Entry code

2005-02-07 Thread Troy Simpson
Chris, Was'up... Use ColdFusion Components and with a Flash MX front end. Sorry, but I have no code to share though. Troy On Mon, 7 Feb 2005 13:06:17 -0500, Chris Tilley <[EMAIL PROTECTED]> wrote: > My client would like to take an existing Excel spreadsheet that is > used for employee timeshe

RE: time to cluster, I thinkL

2004-12-20 Thread Jim Davis
> -Original Message- > From: Burns, John D [mailto:[EMAIL PROTECTED] > Sent: Monday, December 20, 2004 11:22 AM > To: CF-Talk > Subject: RE: time to cluster, I thinkL > > Continuing down this line of questioning, what kind of numbers are you > all experiencing whe

Re: time to cluster, I thinkL

2004-12-20 Thread Umer Farooq
rea and was hesitant to give advertising space up for something > like that. > > e > > -Original Message- > From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] > Sent: Monday, December 20, 2004 12:18 PM > To: CF-Talk > Subject: RE: time to cluster, I thinkL >

Advertising Re: time to cluster, I thinkL

2004-12-20 Thread Michael Dinowitz
rea and was hesitant to give advertising space up for something > like that. > > e > > -Original Message- > From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] > Sent: Monday, December 20, 2004 12:18 PM > To: CF-Talk > Subject: RE: time to cluster, I thinkL > > Wi

RE: time to cluster, I thinkL

2004-12-20 Thread Emmet McGovern
Subject: RE: time to cluster, I thinkL With a lot of traffic (At least for my website), it practically pays for dedicated hosting. -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 12:08 PM To: CF-Talk Subject: RE: time to cluster, I thinkL We

RE: time to cluster, I thinkL

2004-12-20 Thread Katz, Dov B (IT)
With a lot of traffic (At least for my website), it practically pays for dedicated hosting. >>> On a side note... I noticed you have google adwords. Has it been worth the real estate? Emmet NOTICE: If received in error, please d

RE: time to cluster, I thinkL

2004-12-20 Thread Katz, Dov B (IT)
With a lot of traffic (At least for my website), it practically pays for dedicated hosting. -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 12:08 PM To: CF-Talk Subject: RE: time to cluster, I thinkL We have a cluster setup for one of

RE: time to cluster, I thinkL

2004-12-20 Thread Ben Rogers
nal Message- > From: Jochem van Dieten [mailto:[EMAIL PROTECTED] > Sent: Monday, December 20, 2004 11:42 AM > To: CF-Talk > Subject: Re: time to cluster, I thinkL > > Burns, John D wrote: > > Continuing down this line of questioning, what kind of numbers are you > &g

RE: time to cluster, I thinkL

2004-12-20 Thread Emmet McGovern
d then consider clustering if it doesn't help. On a side note... I noticed you have google adwords. Has it been worth the real estate? Emmet -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:33 AM To: CF-Talk Subject: RE: time

Re: time to cluster, I thinkL

2004-12-20 Thread Jochem van Dieten
Burns, John D wrote: > Continuing down this line of questioning, what kind of numbers are you > all experiencing when you're having to split to separate servers, go to > multiple machines, etc? It isn't so much about having to split, but wanting to split. I don't want to run a database server on

RE: time to cluster, I thinkL

2004-12-20 Thread Katz, Dov B (IT)
ginal Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:22 AM To: CF-Talk Subject: RE: time to cluster, I thinkL Continuing down this line of questioning, what kind of numbers are you all experiencing when you're having to split to separate serv

RE: time to cluster, I thinkL

2004-12-20 Thread Burns, John D
ight help me in planning ahead some. John Burns Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web Developer -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:03 AM To: CF-Talk Subject: Re: time to cluster, I thinkL On M

Re: time to cluster, I thinkL

2004-12-20 Thread Al Musella, DPM
Why do you want to cluster? If it is for reliability, then that is ok. But if you need speed, you may be best off just putting the IIS/CF on one computer and the MSSQL2K on the other computer, since you already have one license of each. The computers are cheaper than the licenses. If you do

Re: time to cluster, I thinkL

2004-12-20 Thread Sean Corfield
On Mon, 20 Dec 2004 09:26:18 -0500, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > I'm going to be blasted for this, but clustering is the last resort, not > first. I would be surprised if anyone blasts you. > 1. Do you have seperate boxes for DB and webserver? (no) This would be the first thing

Re: time to cluster, I think

2004-12-20 Thread Michael Dinowitz
Actually, I was suggesting to throw more ram at the machine and seperate the webserver from the SQL. While I do like tight code and DB, it's not the first thing to add; Ram is. I have 5 levels of optimization: 1. Code 2. DB structure 3. Hardware 4. Network 5. Server settings Code and DB take time

RE: time to cluster, I think

2004-12-20 Thread Katz, Dov B (IT)
issue. Thanks as always for the helpful info! -Dov -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 10:08 AM To: CF-Talk Subject: RE: time to cluster, I think > I'm thinking about clustering I read some of the articles on thi

RE: time to cluster, I think

2004-12-20 Thread Dave Watts
> It is better to have a SPoF with 99.8% uptime then 2 systems with > 95% uptime each :-) I'm not sure I'd agree with that, as long as only one system is down at any given time! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 ~~~

RE: time to cluster, I think

2004-12-20 Thread Dave Watts
> You could do that with a crossover cable from the Web server to the DB > server, right? No need for extra switches or anything like that. Yes, I'm sure you could. However, within these sorts of environments, typically there's an internal network used for hosting databases and other internal ser

RE: time to cluster, I think

2004-12-20 Thread Dave Watts
> I'm thinking about clustering I read some of the articles on this > (bpurcells, and others, etc) and I'm still a bit confused about which is > the best way for "Entry Level / simple" clustering. > > Right now I have 1 CFMX6.1 Pro license and a single IIS box, sharing > MSSQL2K with CF over

RE: time to cluster, I think

2004-12-20 Thread Matthew Small
You could do that with a crossover cable from the Web server to the DB server, right? No need for extra switches or anything like that. - Matt Small -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 9:53 AM To: CF-Talk Subject: Re: time

Re: time to cluster, I think

2004-12-20 Thread Michael Dinowitz
me network, do you see any > network latency cost involved? > > -Dov > > -Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED] > Sent: Monday, December 20, 2004 9:26 AM > To: CF-Talk > Subject: Re: time to cluster, I thinkL > > I'm goin

Re: time to cluster, I thinkL

2004-12-20 Thread Jochem van Dieten
Katz, Dov B (IT) wrote: > Sorry for not making clearer My problem now is heavy load Moving the database to a separate box from the application / webserver would be the first step. > general risk of availability by having a SPoF. It is better to have a SPoF with 99.8% uptime then 2 systems

RE: time to cluster, I think

2004-12-20 Thread Katz, Dov B (IT)
-Talk Subject: Re: time to cluster, I thinkL I'm going to be blasted for this, but clustering is the last resort, not first. 1. Do you have seperate boxes for DB and webserver? (no) 2. Are they maxed in ram? (probably) 3. Are they peaked? (?) 4. Is your network set up tight? (no as it's

Re: time to cluster, I thinkL

2004-12-20 Thread Anthony Cooper
IMHO I think the first step, assuming you only have a budget for 1 extra machine, would be to move your MSSQL installation onto a separate box to free up some more resources for CF. This'll save you a bit too as you should have most of the software licenses you need too. After you've done that

Re: time to cluster, I thinkL

2004-12-20 Thread Michael Dinowitz
I'm going to be blasted for this, but clustering is the last resort, not first. 1. Do you have seperate boxes for DB and webserver? (no) 2. Are they maxed in ram? (probably) 3. Are they peaked? (?) 4. Is your network set up tight? (no as it's one server) Just moving the SQL to a new box will exten

RE: time to cluster, I thinkL

2004-12-20 Thread Katz, Dov B (IT)
:13 AM To: CF-Talk Subject: Re: time to cluster, I thinkL Katz, Dov B (IT) wrote: > I'm thinking about clustering I read some of the articles on this > (bpurcells, and others, etc) and I'm still a bit confused about which > is the best way for "Entry Level / simple&

Re: time to cluster, I thinkL

2004-12-20 Thread Jochem van Dieten
Katz, Dov B (IT) wrote: > I'm thinking about clustering I read some of the articles on this > (bpurcells, and others, etc) and I'm still a bit confused about which is > the best way for "Entry Level / simple" clustering. > > Right now I have 1 CFMX6.1 Pro license and a single IIS box, shari

Re: Time Format mask

2004-12-19 Thread Barney Boisvert
Kay hit it on the head. To answer your question directly though, no, there isn't any way to make it be lowercase with the mask itself, you have to use some external means. On Mon, 20 Dec 2004 11:42:57 +0800, Kay Smoljak <[EMAIL PROTECTED]> wrote: > On Mon, 20 Dec 2004 14:06:18 +1030, Parker, Kev

Re: Time Format mask

2004-12-19 Thread Kay Smoljak
On Mon, 20 Dec 2004 14:06:18 +1030, Parker, Kevin <[EMAIL PROTECTED]> wrote: > TimeFormat() using tt returns AM and PM in upper case. Is there a way to > structure the mask to return it in lower case. #lcase(TimeFormat(Now(),'hh:mm tt'))# ?' -- Kay Smoljak http://kay.smoljak.com/ ~~

Re: Time and attendance system?

2004-12-09 Thread Qasim Rasheed
www.web360software.com On Thu, 9 Dec 2004 11:20:06 -0500, Mike Chabot <[EMAIL PROTECTED]> wrote: > Does anyone know of a good Web-based time and attendance tracking system? > > This would be for a University that has exempt employees record when > they are sick and when they are on vacation, not

Re: time conumdrum

2004-09-19 Thread Richard Meredith-Hardy
Jochem Thankyou.  I was rather thinking I might have to convert everything to sec (I have no choice in this case but to use MS SQL) but as this is going to be a bit of a job it's nice to know it is a sensible thing to do. Jochem van Dieten wrote: > > Richard Meredith-Hardy wrote: > > > > In conv

Re: time conumdrum

2004-09-19 Thread Jochem van Dieten
Richard Meredith-Hardy wrote: > > In converting over a timesheets application from Access to MSSQL I am > having difficulty with datetime fields:  consider the following (in > CF5): > > > output: {ts '1899-12-30 00:00:00'} > > output: {ts '1899-12-30 12:00:00'} > > output: {ts '1899-12-

Re: time conumdrum

2004-09-19 Thread Richard Meredith-Hardy
Michael I'm not recording start time - stoptime, it's not what the client wants, just 'time spent' on a job, entered on a daily basis. The nature of the business is such that each employee often does a bit of work on half a dozen different jobs each day. Ultimately they are interested in: a) Total

RE: time conumdrum

2004-09-19 Thread Dawson, Michael
I've never really had a use for time that didn't also use date as well. In your case, what would happen if an employee's shift overlapped midnight?  For example, the person starts at 9:00 pm and quits at 5:00 am.  If you disregard the date, wouldn't you end up with a negative time? If this doesn

RE: Time tracking

2004-08-21 Thread Coldfusion
I use Prowork Flow http://www.proworkflow.com/   _   From: Qasim Rasheed [mailto:[EMAIL PROTECTED] Sent: Saturday, August 21, 2004 3:14 PM To: CF-Talk Subject: OT: Time tracking Does anyone have recommendation for software that can be used for project/time tracking. Nothing fancy, just basi

RE: time changing on servers mysteriously?

2004-08-09 Thread Hassan Arteaga Rodriguez
they are synchronizing with some Domain Controller with bad date and time. __ M.Sc. Hassan Arteaga Rodríguez Microsoft Certified System Engineer IT Specialist DIGI Grupo de Desarrollo. COPEXTEL, S.A. Este email y sus adjuntos está dirigido solamente a los destinatarios consignados en el mismo

RE: Switching to J2EE Variables - (was RE: Time Tracking)

2004-06-23 Thread Dave Watts
> I have a CFMX 6.1 and I'm considering moving to J2EE session > variables primarily for this reason. >   > Does anyone know what the risks are of making this change?    If you're using IIS, CFMX will append the jsessionid URL identifier to all redirects, even those to static pages, and IIS doesn

RE: Time Tracking

2004-06-23 Thread Katz, Dov B (IT)
TES>           _   From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 11:09 AM To: CF-Talk Subject: RE: Time Tracking I would add that the current "anti-popup" climate has brought on a host of new pop-up blocking tools. If in your "onUnload"

RE: Time Tracking

2004-06-23 Thread Ian Skinner
I would add that the current "anti-popup" climate has brought on a host of new pop-up blocking tools. If in your "onUnload" function you are calling another page, I suspect a popup blocker would take issue with that - no? -Mark I would say that is a high probability as well. Ian Confidentiali

RE: Time Tracking

2004-06-23 Thread Mark A. Kruger - CFG
inner [mailto:[EMAIL PROTECTED]   Sent: Wednesday, June 23, 2004 9:48 AM   To: CF-Talk   Subject: RE: Time Tracking   As was mentioned in another post you can do something with a _javascript_ body function.  This is not a perfect solution because you are running against the "Stateless&

RE: Time Tracking

2004-06-23 Thread Ian Skinner
As was mentioned in another post you can do something with a _javascript_ body function.  This is not a perfect solution because you are running against the "Stateless" nature of the web.  Your doSomething can call some kind of page and/or service that would log the user.  But this may not work 10

Re: Switching to J2EE Variables - (was RE: Time Tracking)

2004-06-23 Thread Thomas Chiverton
On Wednesday 23 Jun 2004 14:20 pm, Katz, Dov B (IT) wrote: > Does anyone know what the risks are of making this change?   Will it > impact existing CF Apps? Not really. As always, YMMV, test, test, test :-) > for CFID and CFTOKEN that I need to replace that code with J2EE session > ID code, but

Switching to J2EE Variables - (was RE: Time Tracking)

2004-06-23 Thread Katz, Dov B (IT)
code with J2EE session ID code, but I'm not sure. Please advise -Dov   _   From: Bert Dawson [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 9:10 AM To: CF-Talk Subject: RE: Time Tracking If you are using J2EE sessions then you can listen out for when the J2EE sessions expires.

RE: Time Tracking

2004-06-23 Thread Bert Dawson
either of which will might do what you're after. HTH Bert From: Britney Spears [mailto:[EMAIL PROTECTED] Sent: 23 June 2004 12:52 To: CF-Talk Subject: re: Time Tracking Hello, I have an application that users log into using Windows authenticatio

RE: Time Tracking

2004-06-23 Thread Tony Weeg
[mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 8:26 AM To: CF-Talk Subject: Re: Time Tracking Guys/Gals...Any ideas on how to track when a user logs out? On Wed, 23 Jun 2004 08:18:08 -0400, Cutter (CF-Talk) wrote: >Storing the time of login is fairly simple. When they login it can

Re: Time Tracking

2004-06-23 Thread Britney Spears
Guys/Gals...Any ideas on how to track when a user logs out? On Wed, 23 Jun 2004 08:18:08 -0400, Cutter (CF-Talk) wrote: >Storing the time of login is fairly simple. When they login it can be >written to a variable in a db table that they have done so (I even store >the IP they came in on). Log

Re: Time Tracking

2004-06-23 Thread Cutter (CF-Talk)
Storing the time of login is fairly simple. When they login it can be written to a variable in a db table that they have done so (I even store the IP they came in on). Log out is different since so many users don't truly logout, they just jump to a different site. I'm sure there's a way, I've j

re: Time Tracking

2004-06-23 Thread Britney Spears
Hello, I have an application that users log into using Windows authentication. I would like to track when a user logs and store that information when they log out so I can see how long they have been online using the application. Is there a "add-on"  or code out there that I could plug into my ap

Re: Time Out Error with

2004-03-31 Thread MIchael Kane
I had a similar problem, and asked the tag author for help. The solution was that the .exe file that comes in the ZIP of the tag is an installation program, and not the actual executable that will be used. I ran the exe on the server, which installs HTMLDoc. Providing the path to that exe file made

Re: Time Out Error with

2004-02-26 Thread Christian De Leon
;Is there no way i can make this tag work. I need to create PDF files >from >within my coldfusion pages. What are the other ways to achieve that.I >have >relatively simpler reports to convert to pdf. > >Thanks >Tej > >-Original Message- >From: [EMAIL PROTECTED] [mailt

Re: Time Out Question

2004-02-10 Thread Bryan F. Hogan
Check out Ray's reply. Harold Brauer wrote: > It is still timing out before the 40 minutes. I just tested it again and > it showed one user on line then about 15 to 20 minutes later it showed 0 > users. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Time Out Question

2004-02-10 Thread Harold Brauer
It is still timing out before the 40 minutes. I just tested it again and it showed one user on line then about 15 to 20 minutes later it showed 0 users. -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 8:14 AM To: CF-Talk Subject: Re

RE: Time Out Question

2004-02-10 Thread Raymond Camden
Ok then - so you need to add applicationtimeout to the tag. This will tell CF how long app vars live for. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Time Out Question

2004-02-10 Thread Bryan F. Hogan
Than your ok. Harold Brauer wrote: > The setting in the admin for the application variables is 2 days. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Time Out Question

2004-02-10 Thread Harold Brauer
The setting in the admin for the application variables is 2 days. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 8:04 AM To: CF-Talk Subject: RE: Time Out Question You need to set the timeout value in your cfapplication tag. Also

<    1   2   3   4   >