Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-15 Thread Cameron Childress
For what it's worth, I think I have found the solution to this problem. Thought I would share it. It was really only happening with script based CFCs, so I turned off Javascript validation thinking Eclipse may have been looking at the CFScript as JS and trying to validate it all the time. It's

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Cameron Childress
, December 06, 2011 11:01 AM To: cf-talk Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem That did clear up the problem, though I suspect it's only temporary. I restart Eclipse at least once a day already and see this problem continuously. If anyone else has any ideas

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Cameron Childress
Childress [mailto:camer...@gmail.com] Sent: Tuesday, December 06, 2011 11:01 AM To: cf-talk Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem That did clear up the problem, though I suspect it's only temporary. I restart Eclipse at least once a day already and see this problem

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Mark Mandel
-Original Message- From: Cameron Childress [mailto:camer...@gmail.com] Sent: Tuesday, December 06, 2011 11:01 AM To: cf-talk Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem That did clear up the problem, though I suspect it's only temporary. I restart

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Cameron Childress
back to CFEclipse...CFBuilder is still too buggy and clunky... Eric -Original Message- From: Cameron Childress [mailto:camer...@gmail.com] Sent: Tuesday, December 06, 2011 11:01 AM To: cf-talk Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Aaron
You should try running from a command prompt or via modifying a shortcut: CFBuilder.exe -clean That will clear the caches and sometimes makes CF Builder usable again when it feels clunky. This is an Eclipse thing you can look up if you like. Aaron DeRenard On Tue, Dec 6, 2011 at 8:55 AM,

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-07 Thread Cameron Childress
Since restarting without this fixes the problem temporarily. I'm not sure that adding it will change anything (since it's fixed after restart either way), but I may give it a shot, assuming I stop using IntelliJ and go back to CFBuilder. -Cameron On Wed, Dec 7, 2011 at 3:44 PM, Aaron

ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Cameron Childress
Some weeks ago I started having a problem where using CTRL+X, CTRL+C, CTRL+V in ColdFusion builder seems to work only sporadically. Eventually I narrowed it down to a problem where Eclipse/CFB seems to need me to hold the keys for a second or two before the cut/paste takes effect. If I copy an

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Steve 'Cutter' Blades
I've had similar issues, due to some kind of internal memory leak (possibly related to search). I've found that if I restart Eclipse when I first notice the issue, then I can avoid it until Eclipse gets bogged down again. Steve 'Cutter' Blades Adobe Community Professional Adobe Certified

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Cameron Childress
That did clear up the problem, though I suspect it's only temporary. I restart Eclipse at least once a day already and see this problem continuously. If anyone else has any ideas of what I might try disabling in Eclipse or CFB relating to cut/pasting content, I'm willing to give it a try. I

RE: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Eric Roberts
I got rid of CFBuilder and went back to CFEclipse...CFBuilder is still too buggy and clunky... Eric -Original Message- From: Cameron Childress [mailto:camer...@gmail.com] Sent: Tuesday, December 06, 2011 11:01 AM To: cf-talk Subject: Re: ColdFusion Builder - Cut/Paste Delay Problem

Re: ColdFusion Builder - Cut/Paste Delay Problem

2011-12-06 Thread Mark Mandel
- Cut/Paste Delay Problem That did clear up the problem, though I suspect it's only temporary. I restart Eclipse at least once a day already and see this problem continuously. If anyone else has any ideas of what I might try disabling in Eclipse or CFB relating to cut/pasting content, I'm

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Dave l
If you go back to what I keep telling you about multi-steps then it works like you want it to.. do something after the upload and then report it back to script because then you know it was done. ~| Want to reach the

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Dave l
maybe this video will help, maybe not www.jamwerx.com/rick.mp4 ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-24 Thread Tony Bentley
the thumbnails which allows for some delay time to write the large images before the user tries to load them. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Raj Vijay
Rick I think the exact problem area I the code above is the call to the function fnGetRentalProperties(), which goes out to another cfc method and constructs HTML for display before all the data is finished processing. Have you tried invoking the fnGetRentalProperties() as a callback

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Rick Faircloth
); $('.rentalPropertyAddResponseDialog').fadeIn(250); }); } -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Wednesday, September 23, 2009 12:06 AM To: cf-talk Subject: Re: CF jQuery - How to delay ajax completion until images are processed... async

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-23 Thread Rick Faircloth
- From: Raj Vijay [mailto:vraajku...@rediffmail.com] Sent: Wednesday, September 23, 2009 8:37 AM To: cf-talk Subject: Re: CF jQuery - How to delay ajax completion until images are processed... Rick I think the exact problem area I the code above is the call to the function

CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
Got a combination CF jQuery question for those of you who use both.usually, I can get a better response from folks who use CF jQuery than I can from those who use only jQuery. I've got an ajax call (not AJAX call.) that inserts property data into a database then processes from 1 to usually

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread James Holmes
It sounds like you need a synchronous request e.g.: http://stackoverflow.com/questions/133310/how-can-i-get-jquery-to-perform-a-synchronous-rather-than-asynchronous-ajax-req Of course, if you have to wait for a response, it may be worth simply doing a normal post rather than using ajax. mxAjax

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
method into a cfthread, but that didn't seem to help, either. I'll check out your link...perhaps that's the answer. Rick -Original Message- From: James Holmes [mailto:james.hol...@gmail.com] Sent: Tuesday, September 22, 2009 11:01 PM To: cf-talk Subject: Re: CF jQuery - How to delay ajax

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
trying to process images in the background. Rick -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, September 22, 2009 11:13 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Thanks for the tip, James

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread lists
Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Thanks for the tip, James... I tried to use the setting async: false in the ajax parameters, but that didn't seem to have any effect. I wish I could somehow let the image processing continue even if the close

RE: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread Rick Faircloth
Message- From: lists [mailto:li...@commadelimited.com] Sent: Tuesday, September 22, 2009 11:39 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Rick... Are you using the GET/POIST methods, or using the AJAX methods from within jQuery? AJAX

Re: CF jQuery - How to delay ajax completion until images are processed...

2009-09-22 Thread James Holmes
. Rick -Original Message- From: lists [mailto:li...@commadelimited.com] Sent: Tuesday, September 22, 2009 11:39 PM To: cf-talk Subject: RE: CF jQuery - How to delay ajax completion until images are processed... Rick... Are you using the GET/POIST methods, or using the AJAX methods

delay sending email

2007-08-20 Thread Mik Muller
Hey all, I've been wondering about delayed sending of email. What would the best way to, for example, not send an email at the moment an event is posted to a site, but, say, 12 hours before the event. How would YOU do it, using CF7 and IIS / SMTP. Thanks Mik Michael Muller

Re: delay sending email

2007-08-20 Thread Ian Skinner
Maybe not the best solution - depends on other requirements - but a CF scheduled task would easily provide the desired delay. ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles

RE: delay sending email

2007-08-20 Thread Rich
Quartz (a java scheduling engine). HTH, Rich Kroll -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 3:48 PM To: CF-Talk Subject: delay sending email Hey all, I've been wondering about delayed sending of email. What would the best way

Re: delay sending email

2007-08-20 Thread Doug Bezona
Use a scheduled task. Basically, mark the event with the time or offset when the email should be sent, and at whatever interval is appropriate, query for the events that are ready for the reminder, and generate the e-mails. On 8/20/07, Mik Muller [EMAIL PROTECTED] wrote: Hey all, I've been

RE: delay sending email

2007-08-20 Thread Peterson, Chris
in your database. Chris Peterson Gainey IT Adobe Certified Advanced Coldfusion Developer -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 3:48 PM To: CF-Talk Subject: delay sending email Hey all, I've been wondering about delayed sending

Re: delay sending email

2007-08-20 Thread Phillip M. Vector
Easy. Set up a CFSchedule to run later and put the email info into a table that the cfschedule pulls from and makes your emails. Mik Muller wrote: Hey all, I've been wondering about delayed sending of email. What would the best way to, for example, not send an email at the moment an event

Re: delay sending email

2007-08-20 Thread Mik Muller
I think when you say before the event that you are no longer talking about delaying the email, but scheduling WHEN the email should be sent. Correct, but see below... In that case you are looking at event scheduling and it could be something as simple as a scheduled task, or you could get

make delay after cfmail to delete attachments?

2005-07-29 Thread Seamus Campbell
is attached and sent by cfmail. Is there any elegant way to delay the delete? I thought of just doing some time consuming loops that did nothing to delay but that seems very wasteful. Any hints please Ta Seamus Seamus Campbell Boldacious WebDesign http://www.boldacious.com [EMAIL

Re: make delay after cfmail to delete attachments?

2005-07-29 Thread James Holmes
Yes, turn off the mail spool with spoolenable=false so that the message is sent before the template continues. On 7/29/05, Seamus Campbell [EMAIL PROTECTED] wrote: Is there any elegant way to delay the delete? ~| Logware

[Reply To] Re: make delay after cfmail to delete attachments?

2005-07-29 Thread Seamus Campbell
Beautiful - thanks Seamus You wrote Yes, turn off the mail spool with spoolenable=false so that the message is sent before the template continues. On 7/29/05, Seamus Campbell [EMAIL PROTECTED] wrote: Is there any elegant way to delay the delete

delay processing a custom tag

2005-06-03 Thread Protoculture
I want to call a custom tag, but at the end of the page processing, not in sequencial order. Can this be done? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: delay processing a custom tag

2005-06-03 Thread Raymond Camden
Why not use onRequestEnd.cfm (if before cfmx7) or onRequestEnd() (if using cfmx7). On 6/3/05, Protoculture [EMAIL PROTECTED] wrote: I want to call a custom tag, but at the end of the page processing, not in sequencial order. Can this be done?

Re: delay processing a custom tag

2005-06-03 Thread Protoculture
FANTASTIC! I totally forgot about that one. Why not use onRequestEnd.cfm (if before cfmx7) or onRequestEnd() (if using cfmx7). On 6/3/05, Protoculture [EMAIL PROTECTED] wrote: I want to call a custom tag, but at the end of the page processing, not in sequencial order. Can this be

Re: delay processing a custom tag

2005-06-03 Thread Protoculture
Hold on actually, no it's not exactly what I wanted. I need the custom tag to be embedded in the html but only process at the end of the page load. Is that clear? Why not use onRequestEnd.cfm (if before cfmx7) or onRequestEnd() (if using cfmx7). On 6/3/05, Protoculture [EMAIL PROTECTED]

RE: delay processing a custom tag

2005-06-03 Thread Russ
javascript or java applet... -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: Friday, June 03, 2005 11:31 AM To: CF-Talk Subject: Re: delay processing a custom tag Hold on actually, no it's not exactly what I wanted. I need the custom tag to be embedded in the html but only

Re: delay processing a custom tag

2005-06-03 Thread Raymond Camden
I'm not quite sure what you mean by embedded in the html. A tag can output html. Where the html shows up depends on where you call it. If you call it in the beginning, it outputs there. Ditto for the end. On 6/3/05, Protoculture [EMAIL PROTECTED] wrote: Hold on actually, no it's not exactly what

re: stored procedures in a CFC - short delay

2005-03-04 Thread S . Isaac Dealey
I'm planning to respond to this thread, but it's going to have to wait until at least when I get back from the office this evening. I just got busy last night with some new framework features to encapsulate and/or search keywords for reuse in queries and since it's all downloaded here at the

Re: CFC Response Delay Bug in ColdFusion 6.1???

2004-06-19 Thread Carlo Gabriel Evidente
I'm very sorry for the duplicate postings...my internet was too slow that time and didn't know it was already posted... [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFC Response Delay Bug in ColdFusion 6.1???

2004-06-18 Thread Thomas Chiverton
On Thursday 17 Jun 2004 17:06 pm, Carlo Gabriel Evidente wrote: locally and tested my programs. Anyone of you who has also encountered this same problem after upgrading to ColdFusion 6.1??? Did you keep all your CF admin settings ? Such as caching class files, database links etc ? -- Tom

Re: CFC Response Delay Bug in ColdFusion 6.1???

2004-06-18 Thread Thomas Chiverton
On Thursday 17 Jun 2004 17:24 pm, Carlo Evidente wrote: I'm currently developing a Flashcom application that interacts with the Do you think posting twice with slightly different address will help ? :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL

RE: CFC Response Delay Bug in ColdFusion 6.1???

2004-06-18 Thread John Beynon
He did the same thing on the mm forums too! Except there were 5 duplicate posts!!! -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 18 June 2004 11:37 To: CF-Talk Subject: Re: CFC Response Delay Bug in ColdFusion 6.1??? On Thursday 17 Jun 2004 17:24 pm, Carlo

CFC Response Delay Bug in ColdFusion 6.1???

2004-06-17 Thread Carlo Gabriel Evidente
Since we upgraded our CF MX 6.0 server to 6.1 version, i noticed that there's a delay with the CFC response from the Coldfusion to the FlashCom server. When my flashcom's client-side action script calls a CFC component, like to check the username and password in the database, it takes a quite long

CFC Response Delay Bug in ColdFusion 6.1???

2004-06-17 Thread Carlo Evidente
I'm currently developing a Flashcom application that interacts with the Coldfusion server. Since we upgraded our CF MX 6.0 server to 6.1 version, i noticed that there's a delay with the CFC response from the Coldfusion to the FlashCom server. When my flashcom's client-side action script calls

RE: Need to delay script execution

2004-01-02 Thread YC Nyon
My application lets users to upload a zip file into the server. Once done, i will use cfexecute to run a command line to unzip the uploaded file (dbase) into a sub-directory. However, I need to delay the 2nd part of the script so that the unzipping process can be done as I need to read the dbase

delay in posts

2003-11-06 Thread cf
hi micheal, just an fyi seems to take about an hour or so for my posts to show up anything i can do? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Is there delay after updating collection

2003-09-11 Thread Andy Ousterhout
Is there any delay between when a collection is updated and when the results are reflected in a search? Andy ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link

RE: Is there delay after updating collection

2003-09-11 Thread Ben Doom
: Thursday, September 11, 2003 4:01 PM : To: CF-Talk : Subject: Is there delay after updating collection : : : Is there any delay between when a collection is updated and when : the results : are reflected in a search? : : Andy

Studio remote access delay

2002-10-18 Thread JS
I'm connecting to my employers network through a vpn connection. The problem I'm having is when I'm working in CF studio 5, flip to another app, then come back to studio there is a noticeable delay while studio checks for any changes to the template I'm working on. This is slowing me down

RE: Studio remote access delay

2002-10-18 Thread Tangorre, Michael
[mailto:hoftalk;yahoo.com] Sent: Friday, October 18, 2002 10:39 AM To: CF-Talk Subject: Studio remote access delay I'm connecting to my employers network through a vpn connection. The problem I'm having is when I'm working in CF studio 5, flip to another app, then come back to studio

[OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Ron Hornbaker
Sorry for the OT and cross-post from JS-Jive list, but I still haven't found the answer for this. Ever since upgrading to IE5, then 5.5, on my way too fast and memory-laden Dell laptop, JS popup windows take friggin' forEVER to popup, something like 10-12 seconds on average. After a fresh

RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Raymond Camden
Subject: [OT] Frustrating IE window.open popup delay... Sorry for the OT and cross-post from JS-Jive list, but I still haven't found the answer for this. Ever since upgrading to IE5, then 5.5, on my way too fast and memory-laden Dell laptop, JS popup windows take friggin' forEVER to popup

RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Joseph DeVore
I had the same problem but once I upgraded to 6.0.2600 it was fixed Joseph DeVore VeloxWeb Technologies -Original Message- From: Ron Hornbaker [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 10:28 AM To: CF-Talk Subject: [OT] Frustrating IE window.open popup delay

RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Raymond Camden
: morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 1:44 PM To: CF-Talk Subject: RE: [OT] Frustrating IE window.open popup delay... I had the same problem but once I

RE: [OT] Frustrating IE window.open popup delay...

2001-11-01 Thread Gary P. McNeel, Jr.
. -Gary -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 12:53 PM To: CF-Talk Subject: RE: [OT] Frustrating IE window.open popup delay... I'm running IE 6, no luck. If I had to guess, I'd bet it's some low level component that IE6

RE: Delay function in CFM

2001-09-25 Thread Philip Arnold - ASP
I am looking for a CFM function where it delays a specific amount of time before it proceeds to the next line of instruction. There are several Wait or Sleep type tags in the TagGallery, but they're NT based Most also deal in whole seconds, so if you want to wait a quarter of a second, it

Delay Post

2001-09-25 Thread Benjamin Falloon
Huge delay in my posts (and coming in wrong order). Just testing. Ignore, unless you know something I don't... ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http

Re: Delay Post

2001-09-25 Thread Benjamin Falloon
- Original Message - From: Benjamin Falloon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 26, 2001 8:43 AM Subject: Delay Post Huge delay in my posts (and coming in wrong order). Just testing. Ignore, unless you know something I don't

Re: Delay function in CFM

2001-09-24 Thread ycnyon
Hi, I am looking for a CFM function where it delays a specific amount of time before it proceeds to the next line of instruction. Thanks. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: Delay function in CFM

2001-09-24 Thread Howie Hamlin
to the competition: http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: ycnyon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 24, 2001 2:40 AM Subject: Re: Delay function in CFM Hi, I am looking for a CFM function where it delays a specific

Time Delay WAS: Character Code for Tab

2001-04-24 Thread Tony Schreiber
other message base format. All of the replies probably got sent out at the same time and the delay the list actually getting them is more due to email lag than anything else. It's great to get a response and frustrating not to, and I think all of us have experienced both sides

list delay (again)

2001-01-24 Thread stas
If I don't understand it correctly, delays may be caused by mail routers and such. But if I am using an SMPT server running on my box (the one that comes with Win2K/IIS5), I shouldn't be seeing a 4hour delay for my own posts, right

Re: list delay (again)

2001-01-24 Thread Michael Dinowitz
got a delay. If you don't see it there, then the list has a delay. I'll have a 'traffic light' up there and on the main site page showing the list status at all times. This should put peoples minds a little at ease when it comes to the list (hopefully). If I don't understand it correctly, delays

Re: Loooooong delay in postings ????

2000-12-17 Thread Jon Hall
received @ 7:33pm eastern / 4:33pm pacific jon - Original Message - From: "Allan Pichler" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, December 15, 2000 5:38 PM Subject: RE: Loong delay in postings I have had problems with my posti

Loooooong delay in postings ????

2000-12-15 Thread Dru Whitledge
I seem to be experiencing a very long delay in having my postings appear. Is anyone else having this problem (the world really, really needs my info in a hurry :) ). Dru ~~ Structure your ColdFusion code with Fusebox. Get the official book

Re: Loooooong delay in postings ????

2000-12-15 Thread Michael Dinowitz
Nope, I'm seeing a 7-9 minute turn around which is standard. Please remember that if the HoF mail server has problems sending mail to an address, it will place it in a deferred folder and try again in an hour. Your probably seeing that. I seem to be experiencing a very long delay in having my

Re: Loooooong delay in postings ????

2000-12-15 Thread mark_wimer
PROTECTED] Nope, I'm seeing a 7-9 minute turn around which is standard. Please remember that if the HoF mail server has problems sending mail to an address, it will place it in a deferred folder and try again in an hour. Your probably seeing that. I seem to be experiencing a very long delay

RE: Loooooong delay in postings ????

2000-12-15 Thread Allan Pichler
I have had problems with my postings as well FYI: this is sent at 2.38 PM (Pacific) Allan -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 12:23 PM To: CF-Talk Subject: Re: Loong delay in postings Nope, I'm seeing a 7-9

RE: Loooooong delay in postings ????

2000-12-15 Thread Eric Fickes
Join the club E -Original Message- From: Dru Whitledge [mailto:[EMAIL PROTECTED]] I seem to be experiencing a very long delay in having my postings appear. Dru ~~ Structure your ColdFusion code with Fusebox. Get the official

Re: Loooooong delay in postings ????

2000-12-15 Thread Greg Wolfinger
ber 15, 2000 5:38 PM Subject: RE: Loong delay in postings I have had problems with my postings as well FYI: this is sent at 2.38 PM (Pacific) Allan -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 12:23 PM To:

Re: Massive Delay

2000-12-01 Thread Dru Whitledge
Yep, probably about an hour. Dru At 13:00 11/30/2000 -0500, you wrote: Has anyone experienced a LONG TIME before they receive emails from House of Fusion or even their own POSTS? ~~ Structure your ColdFusion code with Fusebox. Get the

Re: Massive Delay

2000-12-01 Thread Jon Hall
yes, very long I posted one about an hour before this message and have not seen it come back yet. jon - Original Message - From: "Adkins, Randy" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 30, 2000 1:00 PM Subject: Massive Delay Ha

Massive Delay

2000-11-30 Thread Adkins, Randy
Has anyone experienced a LONG TIME before they receive emails from House of Fusion or even their own POSTS? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Delay

2000-10-30 Thread Philip Arnold - ASP
i still think javascript would be the most effective method am i wrong? This has 3 major drawbacks; A lot of corporate firewalls don't allow JavaScript at all You could turn your JS off, and the template wouldn't know The template completes before the delay fires off I only use a delay

RE: Delay

2000-09-28 Thread Peter Stolz
LOCKs that form a deadlock for the given time. The page execution stops without any ColdFusion activity during the blocking period" P. -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 27, 2000 2:14 PM To: CF-Talk Subject: RE: Delay why not make

RE: Delay

2000-09-28 Thread Reynolds, Adam
Yup and take one of those threads from you multi threaded server environemnt and lock it up for 2 seconds20% fall in server perfomance...bingo. :) -- From: Simon Horwith[SMTP:[EMAIL PROTECTED]] Sent: 27 September 2000 15:51 To: CF-Talk Subject: RE: Delay

RE: Delay

2000-09-28 Thread Reynolds, Adam
Stop it! You are hogging a Server Thread while you do this. This really is horrendous programming technique. -- From: Simon Horwith[SMTP:[EMAIL PROTECTED]] Sent: 28 September 2000 14:32 To: CF-Talk Subject: RE: Delay actually, I think CFSET Start

RE: Delay

2000-09-28 Thread Simon Horwith
correct. I don't preach server side timers, I just replied to somebody's question. They need a timer, written in CF and running server-side only. This was the best code I could come up with to do that. I think what they are actually after is something like a 10 second delay, not one minute

Re: Delay

2000-09-28 Thread Michael Dinowitz
FOR A WAIT PROCESS!!! Stop it! You are hogging a Server Thread while you do this. This really is horrendous programming technique. -- From: Simon Horwith[SMTP:[EMAIL PROTECTED]] Sent: 28 September 2000 14:32 To: CF-Talk Subject: RE: Delay actually, I think CFSET Start

RE: Delay

2000-09-28 Thread Simon Horwith
. ~Simon -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:49 AM To: CF-Talk Subject: Re: Delay WaitFor 1.0 Using this component you can pause your ASP app for a specified time, wait until a file exists or wait until the component can

RE: Delay

2000-09-28 Thread Peter Stolz
CF_BLOCK P. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:36 AM To: CF-Talk Subject: RE: Delay correct. I don't preach server side timers, I just replied to somebody's question. They need a timer, written in CF and running

RE: Delay

2000-09-28 Thread Simon Horwith
what is cf_block? ~Simon -Original Message- From: Peter Stolz [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:57 AM To: CF-Talk Subject: RE: Delay CF_BLOCK P. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000

Re: Delay

2000-09-28 Thread Ryan
I think the CFX_Sleep tag someone mentioned sounds perfect. Maybe someone mentioned some problems with this method that I missed or something. RPS -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

RE: Delay

2000-09-28 Thread Gavin Myers
i still think javascript would be the most effective method am i wrong? -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: Delay

2000-09-28 Thread JustinMacCarthy
Also there is cfx_wait tag in the gallery ~Justin - Original Message - From: "Simon Horwith" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, September 28, 2000 4:56 PM Subject: RE: Delay egg-knowledged!! use of a COM object would definitely b

Re: Delay

2000-09-28 Thread Michael Dinowitz
:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:49 AM To: CF-Talk Subject: Re: Delay WaitFor 1.0 Using this component you can pause your ASP app for a specified time, wait until a file exists or wait until the component can get exclusive read/write permissions to a file http

RE: Delay

2000-09-28 Thread Simon Horwith
you are correct, but we're talking SERVER SIDE here, which means CF/ASP/COM or CFX. For a general client-side timer, JS is it. ~Simon -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 12:15 PM To: CF-Talk Subject: RE: Delay i still

RE: Delay

2000-09-28 Thread Simon Horwith
, September 28, 2000 12:21 PM To: CF-Talk Subject: Re: Delay You know what the real problem is? There aren't enough Java CFX tags out there. A Java CFX or a Java class could be used to do this and would be cross platform. I'll have to add that to my (100 item) list of things to do. :) egg-knowledged

RE: Delay

2000-09-28 Thread Jeremy Allen
sleep()" function :) Jeremy Allen [EMAIL PROTECTED] -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 28, 2000 11:49 AM To: CF-Talk Subject: Re: Delay WaitFor 1.0 Using this component you can pause your ASP app for a specified time, wait un

RE: Delay

2000-09-28 Thread lsellers
You know what the real problem is? There aren't enough Java CFX tags out there. A Java CFX or a Java class could be used to do this and would be True. I'm not sure how to phrase this without sounding a bit arrogant, but... from some of the emails I get from time to time I seem to have

RE: Delay

2000-09-27 Thread Simon Horwith
INSTEAD /CFIF /CFLOOP ~Simon -Original Message- From: Michael Gagnon [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 9:07 PM To: CF-Talk Subject: Re: Delay I use a CFLOOP to create a delay. CFLOOP Index="Timer" From="1" to="15000" STEP="1

RE: Delay

2000-09-27 Thread Simon Horwith
slight fix on my end. use MOD to avoid executing on every pass, and GTE because you may exceed the desired delay by a few millisecs.: THIS SHOULD CREATE A ONE MINUTE TIMER!! CFSET tickBegin = GetTickCount() CFLOOP FROM="1" TO = "1" index = "index"

RE: Delay

2000-09-27 Thread Gavin Myers
why not make a delay w/javascript? SCRIPT LANGUAGE="JavaScript" !-- Hide from old browsers // Copyright © 1999 Doug Popeney // Created by Doug Popeney ([EMAIL PROTECTED]) // JavaScript Made Easy!! - http://www.easyjavascript.com function startTimer(){ var time= new Date();

Re: Delay

2000-09-27 Thread James Smith
k" [EMAIL PROTECTED] Sent: Wednesday, September 27, 2000 4:01 PM Subject: RE: Delay slight fix on my end. use MOD to avoid executing on every pass, and GTE because you may exceed the desired delay by a few millisecs.: THIS SHOULD CREATE A ONE MINUTE TIMER!! CFSET tickBegin =

Delay

2000-09-25 Thread Parker, Kevin
Can anyone help please? I'm trying to set up a delay in page without using a meta tag. I've tried this but it relocates straight way. Do I need to tell it that the values are specifically dates? TIA! !--- Create a 2 second delay --- CFSET Beginning = Now() CFSET Ending = Now() CFSET

RE: Delay

2000-09-25 Thread Jared Clinton
Check the tag gallery for a wait tag... I'm guessing this code is being optimised out. I'm also guessing that whatever reason you need a delay for .. ther is a better way to fix the problem. Jared. -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday

  1   2   >