Re: Testing

2014-05-18 Thread Rick Faircloth
Thanks for the confirmation, Mike. I'll keep working on the solution to why you didn't receive it and I didn't receive your notice confirmation my message failure. :-D Rick On 5/18/2014 10:32 PM, Mike K wrote: > Nope. I never received it Rick. > > > > On Mon, May 19, 2014 at 12:31 PM, Rick

Re: Testing

2014-05-18 Thread Mike K
Nope. I never received it Rick. On Mon, May 19, 2014 at 12:31 PM, Rick Faircloth wrote: > > Testing... > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=hou

Re: Testing

2011-04-05 Thread Alan Rother
However in THIS case, it does seem to be true On Tue, Apr 5, 2011 at 1:05 PM, Michael Grant wrote: > > Appearances can be deceiving though. > > > On Tue, Apr 5, 2011 at 3:59 PM, dB wrote: > > > > > It *appears* as though I've subscribed... > > > > > > > >

Re: Testing

2011-04-05 Thread Michael Grant
Appearances can be deceiving though. On Tue, Apr 5, 2011 at 3:59 PM, dB wrote: > > It *appears* as though I've subscribed... > > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology

Re: Testing for existence of Java library?

2008-08-16 Thread denstar
On Fri, Aug 15, 2008 at 3:21 PM, Barney Boisvert wrote: > You could attempt to load one of it's classes and catch the resulting > exception if it's missing. Based on whether that exception is raised > you'll know whether it's available. Yes, that sounds like a good way to do it. FWIW, when I've

RE: Testing for existence of Java library?

2008-08-15 Thread Andrew Scott
Subject: Re: Testing for existence of Java library? Not when someone asks a Java question and not a JavaScript question. On Sat, Aug 16, 2008 at 12:21 PM, Andrew Scott <[EMAIL PROTECTED]> wrote: > I don't know but maybe something like this > > Try { >Var

Re: Testing for existence of Java library?

2008-08-15 Thread James Holmes
Not when someone asks a Java question and not a JavaScript question. On Sat, Aug 16, 2008 at 12:21 PM, Andrew Scott <[EMAIL PROTECTED]> wrote: > I don't know but maybe something like this > > Try { >Var test = new Ext.GridPane(); > } catch (e) { >// Library not found > } > > I supp

RE: Testing for existence of Java library?

2008-08-15 Thread Andrew Scott
I don't know but maybe something like this Try { Var test = new Ext.GridPane(); } catch (e) { // Library not found } I suppose you don't think like that? -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 9015 8628 Mobile: 0404 998 273 -Orig

Re: Testing for existence of Java library?

2008-08-15 Thread Brad Wood
You mean, like check to see if the jar exists? I've never found a way to do it without simply trying to create an instance of it in a try catch block. ~Brad - Original Message - From: "Pete Ruckelshaus" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, August 15, 2008 4:19 PM Subject: T

RE: Testing for existence of Java library?

2008-08-15 Thread Dave Watts
> Hopefully simple question. How would I test for the > existence of a specific Java library (specifically, iCal4j)? Use an exception handler around your CreateObject call. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authoriz

Re: Testing for existence of Java library?

2008-08-15 Thread Barney Boisvert
You could attempt to load one of it's classes and catch the resulting exception if it's missing. Based on whether that exception is raised you'll know whether it's available. cheers, barneyb On Fri, Aug 15, 2008 at 2:19 PM, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > Hopefully simple question.

Re: Testing for existence of cfthread

2008-06-11 Thread Bilal Soylu
I think the only way to manage threads outside code is to use CF Admin pages. You can built simple admin tag for your own purposes that helps you manage your threads though. You could have the threads register themselves upon start using a shared key space that you can than poll and manage from.

RE: Testing a web service signature?

2008-01-08 Thread Rich
I've done this, but not in CF. There is a Java framework called WSIF (Web Service Invocation Framework) that allows for stubless, or dynamic invocation of a web service as well as exposes the meta data about a web service. You might be able to leverage concepts, or the library itself to get to th

Re: Testing For Windows Media Player

2007-08-02 Thread Cutter (CFRelated)
I would imagine that you would have to use VBScript (which would only work in IE). MSDN would be a better resource. Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Chad McCue wrote: > I

RE: Testing for the existence of a dynamic structure that may or may not exist.

2007-07-02 Thread Che Vilnonis
Josh, Steve... thanks so much! -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Monday, July 02, 2007 3:05 PM To: CF-Talk Subject: Re: Testing for the existence of a dynamic structure that may or may not exist. > Is there any way to do this w/o causing an er

Re: Testing for the existence of a dynamic structure that may or may not exist.

2007-07-02 Thread Josh Nathanson
> Is there any way to do this w/o causing an error/exception if the > structure > does not exist? Did you mean the top level struct not existing? You could do this: -- Josh ~| CF 8 – Scorpio beta now ava

Re: Testing for the existence of a dynamic structure that may or may not exist.

2007-07-02 Thread Steve Bryant
StructKeyExists is good for this. Steve >Is there any way to do this w/o causing an error/exception if the structure >does not exist? > > > > ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe

Re: Testing Database Connection within Application

2007-04-21 Thread Jochem van Dieten
Rob O'Brien wrote: >> I tested shutting down my datasource, and it retured false in about 1-2 >> seconds in my local environment. > > This looks like exactly what I'm looking for and I really appreciate the > effort. > > I tested the same way. I stop the SQL Server service and then refresh the >

RE: Testing Database Connection within Application

2007-04-20 Thread Brian Polackoff
9, 2007 5:17 PM To: CF-Talk Subject: RE: Testing Database Connection within Application >I tested shutting down my datasource, and it retured false in about 1-2 >seconds in my local environment. This looks like exactly what I'm looking for and I really appreciate the effort. I tested th

RE: Testing Database Connection within Application

2007-04-20 Thread Scott Stewart
TED] Sent: Friday, April 20, 2007 1:02 PM To: CF-Talk Subject: RE: Testing Database Connection within Application Rob, This may sound simple, maybe too simple, but how long does your application take to error on a cfquery if the table isn't available? I useed a different approach, rather then

RE: Testing Database Connection within Application

2007-04-19 Thread Rob O'Brien
>I tested shutting down my datasource, and it retured false in about 1-2 >seconds in my local environment. This looks like exactly what I'm looking for and I really appreciate the effort. I tested the same way. I stop the SQL Server service and then refresh the script. Unfortunately, this still

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
TED] Sent: Thursday, April 19, 2007 12:07 PM To: CF-Talk Subject: RE: Testing Database Connection within Application > There is a decent chance that the admin api functionality gives you > access to the same thing that happens when you click the "verify data > source" icon in

RE: Testing Database Connection within Application

2007-04-19 Thread Richard Kroll
> There is a decent chance that the admin api functionality gives you > access to the same thing that happens when you click the "verify data > source" icon in CF Admin. Yes, you can get this from the adminapi: // you must log in before accessing other adminapi components admin

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
~Brad -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 11:52 AM To: CF-Talk Subject: RE: Testing Database Connection within Application Here is a stack trace of what CF is doing when it verifies a data source from CF ADMIN. Unfortunately these file

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
essage- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 11:43 AM To: CF-Talk Subject: RE: Testing Database Connection within Application Doesn't look promising anymore. http://livedocs.adobe.com/coldfusion/7/htmldocs/1738.htm That link tells you how to a

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
, April 19, 2007 11:30 AM To: CF-Talk Subject: RE: Testing Database Connection within Application There is a decent chance that the admin api functionality gives you access to the same thing that happens when you click the "verify data source&qu

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
Out of curiosity, how are you testing it? Are you turning off your database and then refreshing the page to see what happens? ~Brad -Original Message- From: Rob O'Brien [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 11:30 AM To: CF-Talk Subject: RE: Testing Dat

RE: Testing Database Connection within Application

2007-04-19 Thread Brad Wood
There is a decent chance that the admin api functionality gives you access to the same thing that happens when you click the "verify data source" icon in CF Admin. I've never looked, but I am curious now. Of course, if that worked, it would probably just tell you that a database engine was liste

RE: Testing Database Connection within Application

2007-04-19 Thread Rob O'Brien
o: CF-Talk Subject: RE: Testing Database Connection within Application You could wrap your database call in a cftry block and then specify code to run when an error happens. code to run in event of database error (cfmail?) -Original Message- From: Rob O'Brien [mailto:[

RE: Testing Database Connection within Application

2007-04-19 Thread Billy Cox
You could wrap your database call in a cftry block and then specify code to run when an error happens. code to run in event of database error (cfmail?) -Original Message- From: Rob O'Brien [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 10:38 AM To: CF-Talk S

Re: Testing

2007-03-28 Thread Dinner
On 3/27/07, John P A wrote: > Selenium is great for functional testing -- and hooking it into Ant > for running nightly/continuous tests is great. Hot dang! That sounds excellent. I'll have to look into that aspect of Selenium-- perhaps it could wear a couple of hats. > I think all of

Re: Testing

2007-03-27 Thread John Paul Ashenfelter
On 3/27/07, Dinner <[EMAIL PROTECTED]> wrote: > I know this is a recurring thread, so I figured I be the one to reoccur it. =] > > What are folks using for testing? When I say testing, I mean the whole > package- unit tests, application tests, application/server load tests... > > I really like the

RE: Testing...

2006-10-23 Thread Rick Faircloth
Very true...but I'll wait to begin the barrage for CF 8... -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 3:35 PM To: CF-Talk Subject: Re: Testing... >>(Then you wouldn't have to hear me ask constantly, "

Re: Testing...

2006-10-23 Thread Claude Schneegans
>>(Then you wouldn't have to hear me ask constantly, "Is that great feature backwards compatible with CF 4.5.2?" Not really, I'm pretty sure you will have even more questions about all the new features ;-)) -- ___ REUSE CODE! Use custom tags; See http://www.

RE: Testing...

2006-10-23 Thread Rick Faircloth
Exactly... -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 1:11 PM To: CF-Talk Subject: Re: Testing... > Ah ah! You're testing your system after having upgrade from CF 4.5 to > version 7? ;-) > I'd just wait

RE: Testing...

2006-10-23 Thread Rick Faircloth
-Talk Subject: RE: Testing... Yo yo, what up? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

RE: Testing...

2006-10-23 Thread Rick Faircloth
l probably be too much to learn to get up to speed on CF 7, then a bunch more to learn to get up to speed on CF 8, so why go through the learning curve twice? Rick -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 12:57 PM To: CF-

RE: Testing...

2006-10-23 Thread Rick Faircloth
Well, that explains it, then... -Original Message- From: mac jordan [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 12:54 PM To: CF-Talk Subject: Re: Testing... On 10/23/06, Rick Faircloth <[EMAIL PROTECTED]> wrote: > > Testing.anybody

Re: Testing...

2006-10-23 Thread Michael Dinowitz
really off topic. Please do not respond. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusion

Re: Testing...

2006-10-23 Thread Casey Dougall
> Ah ah! You're testing your system after having upgrade from CF 4.5 to > version 7? ;-) > Shit, I'd just wait for 8 at this point. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFu

Re: Testing...

2006-10-23 Thread Claude Schneegans
>>Testing. Ah ah! You're testing your system after having upgrade from CF 4.5 to version 7? ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: Testing...

2006-10-23 Thread mac jordan
On 10/23/06, Rick Faircloth <[EMAIL PROTECTED]> wrote: > > Testing.anybody home? no -- mac jordan home: www.kestrel.org work: www.webhorus.net them: www.jordan-cats.org ~| Introducing the Fusion Authority Quarterly Update.

RE: Testing...

2006-10-23 Thread Steve LaBadie
Yo yo, what up? Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Monday, October 23, 2006 12:41 PM To: CF-Talk Subjec

Re: testing after last week

2006-07-19 Thread Bryan Stevenson
well...looks like that works ;-) 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: "Bryan Stevenson

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
>Read further. ah I didn't see that at the bottom. That values to 0 so it doesn't enact. cool. thanks! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229498 Archives: http://www.houseoffusion.com/cf_lists/thread

RE: testing for an undefined date

2006-01-13 Thread Andy Matthews
Just wrap it in a CFIF statement. show code -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 12:30 PM To: CF-Talk Subject: Re: testing for an undefined date >In your query you can do: > >Where event_date is null > >Or i

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
Read further. > -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Friday, January 13, 2006 1:30 PM > To: CF-Talk > Subject: Re: testing for an undefined date > > >In your query you can do: > > > >Where event_date is null &g

Re: testing for an undefined date

2006-01-13 Thread Charlie Hanlon
I have had difficulty trusting the isDate() function also. I fell back to using take action Charlie Hanlon - Original Message - From: "daniel kessler" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, January 13, 2006 1:28 PM Subject: Re: testing fo

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
>In your query you can do: > >Where event_date is null > >Or is not null > I still want the record, but I just don't want to try and display the html for the date if the date doesn't exist. It adds a line for it. thanks! ~| M

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
It still seems to be enacting the code. I also tried I guess it's a date but an empty date or something like that since isDate didn't help. > ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229493 Archives: http:/

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
In your query you can do: Where event_date is null Or is not null In your cf you can do > -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Friday, January 13, 2006 1:09 PM > To: CF-Talk > Subject: testing for an undefined date > > I can't seem to get th

Re: testing for an undefined date

2006-01-13 Thread Robert Everland III
~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229491 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.

Re: testing a string for unicode characters

2005-12-08 Thread Paul Hastings
S. Isaac Dealey wrote: > I just noticed today (or rather, John Ashenfelter pointed out to me :) > that some regular expression engines include \u to match unicode > characters. that's what unicode calls it's level 1 support. bare butt minimum. i'm weak w/regex so take all of the following w/a

Re: Testing File Upload

2005-10-10 Thread Jason Troy
I would suggest some browsers will append a space to the value submitted. > ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Mes

RE: Testing File Upload

2005-10-10 Thread Bobby Hartsfield
Just check the length of the file field. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 4:34 PM To: CF-Talk Subject: Testing File Upload I have a file upload option on a for

RE: Testing File Upload

2005-10-10 Thread Michael T. Tangorre
> From: Lee [mailto:[EMAIL PROTECTED] > I have a file upload option on a form page where the user may > or may not attach a file. How do I test on the action page > if the user attached a file? Isdefined and paramaterexists > always come in true.

Re: Testing - Not received anything since 7pm Eastern Friday

2005-09-10 Thread Will Tomlinson
> Anyone out there? > Me! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free wi

RE: testing for undefined

2005-06-22 Thread Jim Davis
> -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 12:48 PM > To: CF-Talk > Subject: RE: testing for undefined > > >You can display everything as you want using just the query - why waste > the > >time

RE: testing for undefined

2005-06-22 Thread daniel kessler
>You can display everything as you want using just the query - why waste the >time to convert the query to something else to do this? I'm trying to make it reusable so that I can include it wherever I need it. If I use the same name everywhere, db_info and then use that in all my queries, then

RE: testing for undefined

2005-06-22 Thread Chase Seibert
Is there any way to set a header item in an outgoing CFHTTP request? I'm working with an API that needs a custom header item inserted in a GET request. I'm thinking something like: http://server1/xmlnotify.asp"; method="GET"> HTTP_AUTHORIZATION: Digest userName="cseibert" nonce="a1faa6e2b8a217

RE: testing for undefined

2005-06-22 Thread Jim Davis
> -Original Message- > From: daniel kessler [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 11:24 AM > To: CF-Talk > Subject: RE: testing for undefined > > That's ok. This is just going to loop through the recordset and display > the data so I

RE: testing for undefined

2005-06-22 Thread daniel kessler
>Well - first off you don't need the evaluates in there - you can use normal >notation. I'll try that, thanks. I try to not use it when I can('t). >Something like this. > this should've been: for it's use below. > > > > > > >Once that's set I'm confused... you're looping over a

RE: testing for undefined

2005-06-22 Thread Jim Davis
> -Original Message- > From: Daniel Kessler [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 9:47 AM > To: CF-Talk > Subject: testing for undefined > > I'm returning data back from a database and want to populate > variables the same way as columns are named. I have this working

Re: testing....is this thing on?

2005-04-03 Thread Matt Robertson
On Apr 1, 2005 7:23 PM, Rob <[EMAIL PROTECTED]> wrote: > Matt, you live in Fresno? Yep. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

Re: testing....is this thing on?

2005-04-02 Thread Michael Dinowitz
If I made a lot of money on advertising, it would be nice. The offer was 100% of what I made in advertising over the last 12 months (not much) plus 1/12 of that per month to keep me on. I've never been in this for the money and my advertising revenue reflects that. :) >I gotta ask - was it a "

Re: testing....is this thing on?

2005-04-02 Thread Will The Game
>Please leave declarations regarding your personal preferences to the >CF-Community list ;-) Sorry about that guys. I shouldn't post that late on a friday evening! Will ~| Logware (www.logware.us): a new and convenient web-ba

RE: testing....is this thing on?

2005-04-02 Thread James Holmes
Please leave declarations regarding your personal preferences to the CF-Community list ;-) -Original Message- From: Will The Game [mailto:[EMAIL PROTECTED] Sent: Saturday, 2 April 2005 10:45 To: CF-Talk Subject: Re: testingis this thing on? [snip] POOF

Re: testing....is this thing on?

2005-04-01 Thread Will The Game
>Hell, that does sound, good, pass me one! Sorry, too late, it's gone! And so am I... gnight everyone! POOF! ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com

Re: testing....is this thing on?

2005-04-01 Thread Rob
Matt, you live in Fresno? On Apr 1, 2005 3:40 PM, Matt Robertson <[EMAIL PROTECTED]> wrote: > On Apr 1, 2005 1:36 PM, Rebecca Wells <[EMAIL PROTECTED]> wrote: > > Yup, it's called April Fool's day, aka, St. Stupid's Day. > > I absolutely couldn't help myself. I called my girlfriend and told > he

RE: testing....is this thing on?

2005-04-01 Thread Connie DeCinko
Hell, that does sound, good, pass me one! -Original Message- From: Will The Game [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 5:14 PM To: CF-Talk Subject: Re: testingis this thing on? >Better yet, some Mike's Hard Lemonade! C'mon connieplease! We&

Re: testing....is this thing on?

2005-04-01 Thread Will The Game
>Better yet, some Mike's Hard Lemonade! C'mon connieplease! We're talkin' TJ Toad's Long island Iced tea. 37% alchohol...crap, you should see all the backspaces and corrections I just did here...lmao! I even opened up some window I never knew existed!! Anyway, Mike's ain't bad, but *t

RE: testing....is this thing on?

2005-04-01 Thread Connie DeCinko
Better yet, some Mike's Hard Lemonade! -Original Message- From: Will The Game [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 3:49 PM To: CF-Talk Subject: Re: testingis this thing on? Beer? what's that?? Off for a few long islands and codin' for me! cfset

RE: testing....is this thing on?

2005-04-01 Thread Adrian Lynch
Will's quote of the week... "Do you have Long Island Iced Tea in Ing-ger-land?" :OD -Original Message- From: Will The Game [mailto:[EMAIL PROTECTED] Sent: 01 April 2005 23:49 To: CF-Talk Subject: Re: testingis this thing on? Sorry, not laughing at you. I sincerely

Re: testing....is this thing on?

2005-04-01 Thread Will The Game
Sorry, not laughing at you. I sincerely appreciate the insane amount of >work you provide for free for us! DITTO!! > >Have a good weekend all, I am off to down a few beers! Yee-ha, it is the >WEEKEND! Beer? what's that?? Off for a few long islands and codin' for me! cfset mydrinkofchoice["

Re: testing....is this thing on?

2005-04-01 Thread Matt Robertson
On Apr 1, 2005 1:36 PM, Rebecca Wells <[EMAIL PROTECTED]> wrote: > Yup, it's called April Fool's day, aka, St. Stupid's Day. I absolutely couldn't help myself. I called my girlfriend and told here a Mr. Lyon had called looking for her. He sounded distraught and said it was urgent. He left a num

Re: testing....is this thing on?

2005-04-01 Thread A K
test >Not much traffic today..is there a US holiday today I'm not aware of? ;-) > >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.electricedgesystem

RE: testing....is this thing on?

2005-04-01 Thread Rick Faircloth
... (???) I know the discussion about SEO was not directly about CF-coding, but it sure has to do with how I employ that code... Anyway...just another (OT ;o) thought for the mix... Rick -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 5

Re: testing....is this thing on?

2005-04-01 Thread Ray Champagne
I gotta ask - was it a "nice" amount? Enough to put the kiddies through college? :) Ray At 05:59 PM 4/1/2005, you wrote: >Actually, I just got an email from a (real) company that wants to buy House >of Fusion. I had to turn them down. Yeh, it's a lot of work and headaches >but it's ours (Judit

Re: testing....is this thing on?

2005-04-01 Thread Michael Dinowitz
Actually, I just got an email from a (real) company that wants to buy House of Fusion. I had to turn them down. Yeh, it's a lot of work and headaches but it's ours (Judith's and mine) and we run it for the community. And yes, we're fixing all the bugs and adding new features. No one has commente

Re: testing....is this thing on?

2005-04-01 Thread Ray Champagne
LOL...not April fools to us, but that must have been a nice April fool's joke on you! Sorry, not laughing at you. I sincerely appreciate the insane amount of work you provide for free for us! Have a good weekend all, I am off to down a few beers! Yee-ha, it is the WEEKEND! Ray At 04:50 PM

Re: testing....is this thing on?

2005-04-01 Thread Michael Dinowitz
Due to a database crash and long rebuild time (we have a LOT of data), the site was down for a period today. No mail was lost and everything is back running smoothly. Sorry about that and no, it was not april fools. ~| Logware

Re: testing....is this thing on?

2005-04-01 Thread Bryan Stevenson
> Yup, it's called April Fool's day, aka, St. Stupid's Day. > > May the Farce be with you! and I launched a new app today..so far so good ;-) 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

Re: testing....is this thing on?

2005-04-01 Thread Rebecca Wells
>Not much traffic today..is there a US holiday today I'm not aware of? ;-) Yup, it's called April Fool's day, aka, St. Stupid's Day. May the Farce be with you! ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

Re: testing....is this thing on?

2005-04-01 Thread Claude Schneegans
>>Not much traffic today..is there a US holiday today I'm not aware of? I was asking myself the same question, but I think the HF server was off for a while. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Pl

RE: testing....is this thing on?

2005-04-01 Thread Justin D. Scott
> Not much traffic today..is there a US holiday > today I'm not aware of? ;-) Yes, it's officially called "Friday" and comes around only once per week I'm afraid. :-) --- Justin D. Scott Vice President Sceiron Interactive, Inc. www.sceiron.com [EMAIL PROTECTED]

RE: Testing for existance of a Structure within an Array

2004-12-02 Thread COLLIE David
> My example code is being truncated from this list somehow. Prolly the hyphens... If you have -- (or a some other amount) in the code it cuts it. Make sure there isn't and the message isn't too long -- dc ~| Special thanks t

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Brant Winter
My example code is being truncated from this list somehow. ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185925 Archive

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Brant Winter
The following code is pretty much doing what I need, but I am not sure how to call it from my code. Basically I read in a CSV file using the following line of code: ~| Special thanks to the CF Community Suite Gold Sponsor - CF

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Brant Winter
The following code is pretty much doing what I need, but I am not sure how to call it from my code. Basically I read in a CSV file using the following line of code: ~| Special thanks to the CF Community Suite Silver Sponsor -

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Bert Dawson
Then stAllMyErrors should contain a structure of any errors for each row which had an error, and nothing else. Yes? No? Bert On Thu, 02 Dec 2004 09:15:05 -0400, Brant Wi

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Brant Winter
>Rather than putting the error structure into an array, why not use a >structure? Then rather than having an array whuch is mostly empty >you'll have a structure which only contains errors. > >so rather than >errorsArray[rowNumber] = stError; >you could do >errorsStructure[rowNumber] = stError; > >

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Dwayne Cole
well would you run into a problem with the array if you set each array index to the current row of your query loop. For example errorArray[1].etc errorArray[5].etc errorArray[22].etc I thought that when building and array you have to sequence your index values. If this is true you might need

RE: Testing for existance of a Structure within an Array

2004-12-02 Thread Robertson-Ravo, Neil (RX)
So, there is no real reason to check if one exists as it will always contain a struct ;-) -Original Message- From: Brant Winter [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 12:55 To: CF-Talk Subject: Re: Testing for existance of a Structure within an Array The structure should

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Brant Winter
The structure should initially be empty, or it may contain a value for anyone of 24 different errored fields. ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdynamics.com Message: http://www.

Re: Testing for existance of a Structure within an Array

2004-12-02 Thread Bert Dawson
Rather than putting the error structure into an array, why not use a structure? Then rather than having an array whuch is mostly empty you'll have a structure which only contains errors. so rather than errorsArray[rowNumber] = stError; you could do errorsStructure[rowNumber] = stError; does that

RE: Testing for existance of a Structure within an Array

2004-12-02 Thread Micha Schopman
but then .. if you are checking for a struct in a variable, what does that variable contain initially ? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 ~~

Re: Testing

2004-07-30 Thread Larry Lyons
>This is only a test Is this going to count to the final grade? I wish I'd know I would have studied more. larry [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Testing for file existence across domains

2004-07-16 Thread Jim Davis
PM To: CF-Talk Subject: Re: Testing for file existence across domains > Why not just use CFHTTP to get the specific file?  There's nothing saying > that CFHTTP HAS to call an HTML page. > > Jim Davis > Hi Jim, I need to test for the existence - some properties will have more

Re: Testing for file existence across domains

2004-07-16 Thread Paul Kenney
Does the remote server have any scripting/CGI abilites or is it running something like PERL, ASP, JSP, CF?  If so, you could simply have the remote server check for you.  All you would have to do is tell it which files to check in a list.   Does the remote server have FTP access?  If so, you could

Re: Testing for file existence across domains

2004-07-16 Thread Rick Dawson
> Why not just use CFHTTP to get the specific file?  There's nothing saying > that CFHTTP HAS to call an HTML page. > > Jim Davis > Hi Jim, I need to test for the existence ­ some properties will have more than 8 images (those I can get all eight just fine), and some will have anywheres from non

  1   2   >