RE: Case Sensitivity

2007-10-04 Thread Andy Matthews
Dale... The ColdFusion.navigate functionality is only case-sensitive because Javascript is a case-sensitive language. So when CF creates javascript code, it has to abide by the requirements of that language. Cutter and I have disagreed about case before as well. His logic about case being an

RE: Case Sensitivity

2007-10-04 Thread Andy Matthews
No no. I understand that they ARE different in the underlying ascii code. But the point is, it simply presents confusion to people when a file name can be spelled the exact same, but be two unique files. I had a discussion about programming with a co-worker this morning. We decided that much of

RE: CFIMAGE Resize Slow

2007-10-03 Thread Andy Matthews
What size are your source images? What format? What size are you trying to bring them down to? andy -Original Message- From: Eron Cohen [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 9:58 AM To: CF-Talk Subject: CFIMAGE Resize Slow I wondering if anyone has any advice

Turn off autocomplete popup in CFEclipse?

2007-10-02 Thread Andy Matthews
Can anyone tell me how to disable this feature in CFEclipse? It's one of the most irritating things I've ever had to deal with. I don't want it to suggest ANYTHING via that popup window. Andy Matthews Senior ColdFusion Developer Office: 877.707.5467

Next lowest number from array (or list).

2007-10-02 Thread Andy Matthews
Say that I have a list of allowed nmbers: 32,48,64,72,144,160,200,288,320,400,512,576,640,720,800 If I give the user the option of selecting a number, and it happens to not be in this list, how might I go about automagically selecting the next lowest number? One exception being if the user

RE: Add a javascript handler to the window.onload event

2007-09-28 Thread Andy Matthews
jQuery allows you to have multiple onLoad calls. $(window).ready(function(){ // do stuff here }); Or for the whole document $(document).ready(function(){ // do stuff here }); $(document).ready(function(){ // do more stuff here }); -Original Message- From:

RE: Q

2007-09-28 Thread Andy Matthews
I posted this in a previous email, must not have come through. If you want to add onLoad functionality, it's like this: $(window).ready(function(){ alert('window now loaded'); // do some stuff }); You can also do document load $(document).ready(function(){

RE: Push values into an array - Search on array

2007-09-27 Thread Andy Matthews
If you're just wanting the results of one column in an array, there's a simpler way of doing that: cfquery name=pushintoarray / cfset imageinformation = ListToArray(ValueList(pushintoarray.OBJECTID)) -Original Message- From: Stivn .. [mailto:[EMAIL PROTECTED] Sent: Thursday, September

Calendar module

2007-09-26 Thread Andy Matthews
a calendar, devoid of any interaction, etc. Does anyone know of anything like this? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com

RE: Calendar module

2007-09-26 Thread Andy Matthews
This should do what you need On 9/26/07, Andy Matthews [EMAIL PROTECTED] wrote: I'm looking for some CF code that will generate a calendar for a specific month. All I'd like to do is to be able to pass in the month/year and have it build a correct display (accounting for leap year and things like

RE: #$^% Forms!

2007-09-24 Thread Andy Matthews
I personally LOVE working with forms. I understand the OP's frustrations because I used to feel like that back when I tried to buid forms using PHP. -Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Sent: Monday, September 24, 2007 3:04 PM To: CF-Talk Subject: Re: #$^%

RE: Need to update HTML table rows using a webservice

2007-09-20 Thread Andy Matthews
Call the webservice from within a CFC, then use JSStringFormat to convert the query or structure into a native JS object. Then you'll just eval(returnValue) in your JS code to run that returned string. You've then got access to the values directly in JS. -Original Message- From: Matthew

RE: A-MAZE-ing CSS Skill

2007-09-20 Thread Andy Matthews
Pretty damn impressive, that's for sure. -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 8:53 AM To: CF-Talk Subject: A-MAZE-ing CSS Skill Not CF, but incredible coding. Just had to share. You'll appreciated this. A-MAZE-ing.

RE: Can complex data be stored in an INI file?

2007-09-20 Thread Andy Matthews
There's reason you couldn't convert a complex variable into a string using cfwddx, or even some of CF8's new JSON features. Store it as a JSON string, then read it back in and reconvert it to a native CF struct or array. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED]

RE: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread Andy Matthews
I love EditPlus. It's the best editor I've ever used. -Original Message- From: Jayesh Viradiya [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 1:55 PM To: CF-Talk Subject: RE: CF8: Why would I be getting an access error with this query? Hi Rick, This definitely seems to

RE: Text Editor Preferences?

2007-09-20 Thread Andy Matthews
I love EditPlus. It's the best editor I've ever used. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:04 PM To: CF-Talk Subject: Text Editor Preferences? I've been using TextPad since 1998...haven't seen any reason to switch, but am

RE: Need to update HTML table rows using a webservice

2007-09-19 Thread Andy Matthews
jQuery makes it SUPER simple to add and remove items from the DOM. Assuming you already have a table with an ID of #myTable that looks like this: table id=myTable thead tr thFirst Name/th thLast Name/th /tr /thead tbody tr tdAndy/td tdMatthews/td /tr /tbody

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
Medtext I think. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 3:05 PM To: CF-Talk Subject: Best data type for comments using MySQL? If I have user comments that could be 500-1000 characters, what datatype should I be using with

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
Med text allows for up to 65,535 characters so that should be plenty. Longtext allows for like millions. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 3:32 PM To: CF-Talk Subject: Re: Best data type for comments using MySQL?

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
My pleasure -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 5:19 PM To: CF-Talk Subject: Re: Best data type for comments using MySQL? Med text allows for up to 65,535 characters so that should be plenty. Longtext allows for like

RE: Dynamic CSS

2007-09-11 Thread Andy Matthews
But then you've still got two places you'd need to edit. -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Monday, September 10, 2007 9:07 PM To: CF-Talk Subject: RE: Dynamic CSS -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday

RE: How to protect this query?

2007-09-11 Thread Andy Matthews
You should be able to straight up replace the part after like with a cfqueryparam. Keep the percent signs in and everything. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 11, 2007 11:22 AM To: CF-Talk Subject: How to protect this query? I'm

RE: Dynamic CSS

2007-09-10 Thread Andy Matthews
Just link to a css page like so: link rel=stylesheet href=styles.cfm / Works a treat. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday, September 10, 2007 12:09 PM To: CF-Talk Subject: Re: Dynamic CSS You could pass .css files through the CF

RE: Dynamic CSS

2007-09-10 Thread Andy Matthews
Better to ask CF to render multiple files than have to manage multiple versions of each file. Think how it might look if they had 5 color files Dan. They'd have to manage each style in SIX files. -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Owner of fancybread.com?

2007-09-07 Thread Andy Matthews
Rey... http://flash.meetup.com/110/members/4956371/ This appears to be him, as the link shows fancybread.com. -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Friday, September 07, 2007 1:10 PM To: CF-Talk Subject: Owner of fancybread.com? Anyone know who the owner

RE: Owner of fancybread.com?

2007-09-07 Thread Andy Matthews
Betterwhois.com is your friend: http://www.betterwhois.com/bwhois.cgi?verification=6278domain=fancybread.co m -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Friday, September 07, 2007 1:23 PM To: CF-Talk Subject: Re: Owner of fancybread.com? LOL! You know that I

RE: Owner of fancybread.com?

2007-09-07 Thread Andy Matthews
going to make the next version of BlogCFC have a Contact Owner link show up by default. Just to nudge people. On 9/7/07, Andy Matthews [EMAIL PROTECTED] wrote: Betterwhois.com is your friend: http://www.betterwhois.com/bwhois.cgi?verification=6278domain=fancybr ead.co m

RE: structKeyExists() - Ok, this is freakin me out....

2007-09-05 Thread Andy Matthews
Just test for form.fieldnames. That's the simplest, and will always be there. cfif StructKeyExists(FORM,fieldnames) do some stuff /cfif -Original Message- From: Dinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 7:56 PM To: CF-Talk Subject: Re: structKeyExists()

RE: Am I the only one who thinks Flex 2 isn't

2007-09-05 Thread Andy Matthews
I also feel that Flex is suffering from the bandwagon effect. Too many people think that it's the business which causes other people to jump on it. I do think it's cool, and that it has it's place. I'll say though that it sounds like you're doing a few things wrong. If you're already a ColdFusion

RE: Hosting CF 8

2007-09-04 Thread Andy Matthews
I've always had really good luck with Gearhost.com. They don't have CF8 right now, but they're talking about upgrading soon it sounds like. andy -Original Message- From: Vince Collins [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 11:58 AM To: CF-Talk Subject: Hosting CF

RE: listQualify and multiple spaces

2007-08-30 Thread Andy Matthews
What are you expecting to happen? Do you want to return multiple indexes from those multiple spaces? Maybe you could find and replace spaces with a tilde (~) or something, then use that as your new delimiter? -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED] Sent:

RE: listQualify and multiple spaces

2007-08-30 Thread Andy Matthews
, chr(32)chr(32))# I only put 2 spaces as the delimiter because anything else is single spaced. Chris Martin Andy Matthews wrote: What are you expecting to happen? Do you want to return multiple indexes from those multiple spaces? Maybe you could find and replace spaces with a tilde

RE: listQualify and multiple spaces

2007-08-30 Thread Andy Matthews
Glad to help out. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED] Sent: Thursday, August 30, 2007 11:03 AM To: CF-Talk Subject: Re: listQualify and multiple spaces PERFECT! That worked out great...Thanks! Andy Matthews wrote: That might be one of your problems

RE: Checking on an approach

2007-08-30 Thread Andy Matthews
Sounds like the person who wrote it didn't know anything about joins. I'd rewrite those queries in a heartbeat. Keep them at the top of the page so that you can easily adjust them while you work. Once you're getting the expected results, abstract them into a CFC that can be stored in the

RE: model glue

2007-08-30 Thread Andy Matthews
The MG site works for me, just an FYI. They might have recently switched hosting providers and you caught them in mid DSN flip. -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Thursday, August 30, 2007 1:06 PM To: CF-Talk Subject: Re: model glue It's a

RE: Coldfusion 8 and AJAX

2007-08-27 Thread Andy Matthews
Without having looked at Ben's tute, you might consider returning a structure instead of a query or a string. Then you could bring back multiple bits of data in the same variable. andy -Original Message- From: Ben S [mailto:[EMAIL PROTECTED] Sent: Monday, August 27, 2007 1:49 PM To:

RE: Link Generator Tool

2007-08-24 Thread Andy Matthews
Sounds like he's also outputting this straight to HTML as well though. My suggestion is to completely abstract the linking with javascript. For example, on my family blog I've got a js function which allows me to use plain ole HREF links: a href=slideshow.cfm?slide=58gid=19

RE: What application platform is this? Could it be CF

2007-08-23 Thread Andy Matthews
No...coldfusion's default session IDs are titled cfid and cftoken. Could be anything, but the URL you gave us isn't correct so there's nothing else to use as evidence. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 23, 2007 3:56 PM To:

Bandwidth checking using javascript?

2007-08-22 Thread Andy Matthews
Does anyone know of a tool that can be used to test bandwidth? Open source is preferred. Pure JS or jQuery is also preferred. I need to be able to specify a threshold for low and hi bandwidth with this tool. Anyone have one or know of one? Andy Matthews

RE: Coldfusion 8 hosting

2007-08-21 Thread Andy Matthews
I spoke to the product manager and the QA manager for CF8 and they seemed to indicate that they're certain enough of CF8 that they might not release an update. Just passing on their words. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 7:42 PM

RE: Coldfusion 8 hosting

2007-08-21 Thread Andy Matthews
I spoke to them at CFUnited by the way. Forgot to add that tidbit. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 11:25 AM To: CF-Talk Subject: RE: Coldfusion 8 hosting I spoke to the product manager and the QA manager for CF8

RE: Fading images with ajax

2007-08-20 Thread Andy Matthews
Depending on how many images you have, that could get a little intensive for the user's browser. Might be better to start with the images at 70% and fade the selected image IN to 100%. That way you're only affecting one image as opposed to 10 or 15. -Original Message- From: Bill

RE: Coldfusion 8 hosting

2007-08-20 Thread Andy Matthews
I host with Gearhost, and recently asked them if they were planning on upgrading to 8. They said that it was in their plans. Who knows how long that might last. -Original Message- From: Ali Majdzadeh [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 3:18 PM To: CF-Talk Subject:

RE: GotCFM.com 1000 Sites Contest - The Winners!!!

2007-08-17 Thread Andy Matthews
Rey didn't change that number until after the contest was over. :p -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Friday, August 17, 2007 1:17 PM To: CF-Talk Subject: RE: GotCFM.com 1000 Sites Contest - The Winners!!! I bet you a dollar Cutter wrote a script that

RE: date UN-mask

2007-08-17 Thread Andy Matthews
You tried CreateDate()? -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Friday, August 17, 2007 4:36 PM To: CF-Talk Subject: date UN-mask Is there an easy way (read: already built) to convert a masked date back into an actual date typed variable. For instance,

RE: date UN-mask

2007-08-17 Thread Andy Matthews
There's also ParseDateTime which returns a date object from a string. But I used your example and it didn't pass muster. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, August 17, 2007 4:46 PM To: CF-Talk Subject: RE: date UN-mask You tried CreateDate

RE: CF8, visual cropping tools?

2007-08-16 Thread Andy Matthews
Yes...in fact: http://cfsilence.com/blog/client/index.cfm/2007/8/2/Introducing-cfImageCropp er--Custom-Tag-For-Client-Side-Image-Cropping -Original Message- From: LHWH Interactive [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 9:09 AM To: CF-Talk Subject: CF8, visual

RE: CF8, visual cropping tools?

2007-08-16 Thread Andy Matthews
move the crop area around. Even better would be to restrict the aspect ratio, then resize. So in the example above, I'd restrict the ratio to 2.5 X 2 and just crop AND resize... Sound like something I'd be able to easily accomplish with this tag? On 8/16/07, Andy Matthews [EMAIL PROTECTED] wrote

RE: CF8, visual cropping tools?

2007-08-16 Thread Andy Matthews
Yeah...I was really happy to find it. It's very well done. -Original Message- From: LHWH Interactive [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 10:35 AM To: CF-Talk Subject: Re: CF8, visual cropping tools? On 8/16/07, Andy Matthews [EMAIL PROTECTED] wrote: I believe

RE: list of new stuff in CF8

2007-08-15 Thread Andy Matthews
According to Ben Forta, Adobe has never, nor has any intent in the future, of restricting tags/functions to Enterprise. They offer additional functionality or features, but the core language is the same. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, August

RE: CF8 - Getting image upload to work with the Rich Text Editor (FCKEditor)

2007-08-13 Thread Andy Matthews
He told you that the file upload/manager was enabled? I don't think that's correct. The file manager with FCK Editor is disabled by default and isn't very good anyway. I've heard that people replaced it with Rick Root's custom file manager. Google for rick root, fck editor file manager or

RE: CF8 - Getting image upload to work with the Rich Text Editor (FCKEditor)

2007-08-13 Thread Andy Matthews
You can tinker with FCK editor quite a lot. There's already several built-in toolbars that you can use, but you can also create your own. If you've got access to the cfide folder, then go in and have a look at fckeditor.js. Do a search for hyperlijnk or copy/paste and you'll find a js array of

RE: using ajaxCFC with a CFC in mapped location

2007-08-13 Thread Andy Matthews
This is a good reason not to use AjaxCFC. It's a nice product, but there's WAY too much stuff that you have to do to get it working. How many JS files do you really need? I'd personally recommend jQuery. It's an all in one library that also offers DOM manipulation, effects and more, and it's

RE: using ajaxCFC with a CFC in mapped location

2007-08-13 Thread Andy Matthews
to be in a web accessible directory and have methods and arguments that correspond to what is being called remotely. There's no way around this. On 8/13/07, Andy Matthews [EMAIL PROTECTED] wrote: This is a good reason not to use AjaxCFC. It's a nice product, but there's WAY too much stuff

RE: MySQL front end...

2007-08-09 Thread Andy Matthews
:) Click here for contact us. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Thursday, August 09, 2007 9:38 AM To: CF-Talk Subject: RE: MySQL front end... Dreamcoder: http://www.mentattech.com/ -Original Message- From: Raymond Camden [mailto:[EMAIL

RE: CF 8 SW Maintenance Plan

2007-08-08 Thread Andy Matthews
We bought licenses for 7 a few months ago with subscription. We just got our 8 licenses a few days ago, last week maybe? -Original Message- From: Howell, Craig H Civ WRALC/ITMS [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 08, 2007 8:35 AM To: CF-Talk Subject: SOT: CF 8 SW

RE: cfquery: quotes vs queryparam

2007-08-08 Thread Andy Matthews
Pete Freitag had an amazing session at CFUinted about things like this. It's amazing what can be done using the query string. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 08, 2007 2:17 PM To: CF-Talk Subject: RE: cfquery: quotes vs

RE: One form with two submit buttons in cflayoutarea

2007-08-06 Thread Andy Matthews
Is there any sort of validation on the form itself? I ran into this problem using a javascript validation library. It only recognized the first submit button and nothing I did could get the other one to show up. Then I removed the validation and presto. It worked. -Original Message-

RE: ReplaceNoCase - Replace moren than 1 argument

2007-08-06 Thread Andy Matthews
either 'Andy' OR 'Stivn' with the string 'John'. Andy matthews -Original Message- From: nicolai bass dh [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 9:22 AM To: CF-Talk Subject: ReplaceNoCase - Replace moren than 1 argument Hello, i am a real newbie on coldfusion

RE: ReplaceNoCase - Replace moren than 1 argument

2007-08-06 Thread Andy Matthews
Like Kris said. If you're looking to replace two strings with two other unique strings, then replacenocase twice is your best bet. -Original Message- From: nicolai bass dh [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 9:50 AM To: CF-Talk Subject: Re: ReplaceNoCase - Replace

RE: SQL injection hack?

2007-08-06 Thread Andy Matthews
Thanks John...this is a great checklist. -Original Message- From: John Mason [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 12:25 PM To: CF-Talk Subject: RE: SQL injection hack? You'll also see these automated scripts hitting other services like ftp, email, etc. You need to

RE: FCKeditor and CF Code

2007-08-03 Thread Andy Matthews
FCK Editor is probably confusing your CF code as HTML. I'm going to guess that this won't work like you expect it to. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Friday, August 03, 2007 1:01 PM To: CF-Talk Subject: FCKeditor and CF Code Hello all, I am using

RE: Installing CF8

2007-08-02 Thread Andy Matthews
I've read that you should really uninstall 7. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday, August 02, 2007 7:35 AM To: CF-Talk Subject: Installing CF8 Can CF8 be installed over CF7? Or do I have to uninstall CF7 first? (for either single or

RE: Installing CF8

2007-08-02 Thread Andy Matthews
On this list I believe. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, August 02, 2007 8:39 AM To: CF-Talk Subject: Re: Installing CF8 On Thursday 02 Aug 2007, [EMAIL PROTECTED] wrote: I've read that you should really uninstall 7. You could do that,

How can I fix this cfeclipse error notification in the gutter?

2007-08-02 Thread Andy Matthews
in the files to look to fix it. Anyone? Mark? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com

RE: Adobe Nails ColdFusion Cofin

2007-08-01 Thread Andy Matthews
We just purchased SQL Server licenses and it's only the actual processor that counts. You could have a quad core and it would only be one license. -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 01, 2007 9:51 AM To: CF-Talk Subject: RE: Adobe Nails

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Andy Matthews
Rick... You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle. There might be a few people that would be convinced by your (compelling) arguments. But most people are going to see that price tag and not even BOTHER reading the rest

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Andy Matthews
That's a ridiculous statement Rey... Just because a client doesn't want to drop 1/4 or 1/5 oif their budget on an application server doesn't mean that they're not worth doing business with. andy -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
You might need to append a random var to the returned string. Timestamp or something. -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 11:45 AM To: CF-Talk Subject: Spry and IE Caching Hello Guys, First time ever using

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
That should have read append a random var to the request. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 3:46 PM To: CF-Talk Subject: RE: Spry and IE Caching You might need to append a random var to the returned string. Timestamp

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Andy Matthews
=images/img.gif width=580 height=97 border=0 alt=//a/div I'm trying to pull off a basic roll over affect so if the user rolls over the graphic or header the header (background-color) will change. Thanks in advance for any input. -Original Message- From: Andy Matthews [mailto:[EMAIL

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Andy Matthews
Can you be a little more clear as to what you mean by CSS crash? Are you saying that the CSS doesn't work? Doesn't load? Do you have a site we could look at? andy -Original Message- From: Paul Henderson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 1:35 PM To: CF-Talk

RE: WebSite Email Address

2007-07-24 Thread Andy Matthews
How is it a privacy issue to show the from address as the email of the person sending the email? The sender has chosen to send an email, and they have chosen to include their email address as part of the submission. There's no reasonable guarantee of privacy for them. andy -Original

RE: CFC file size

2007-07-24 Thread Andy Matthews
My company has a CFC that's around that line size. Not sure how many methods. It doesn't seem to be overly impactful. -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 24, 2007 1:16 PM To: CF-Talk Subject: CFC file size At what point does the

RE: MySQL Client

2007-07-23 Thread Andy Matthews
Man... The interface on that HeidiSQL app is HORRIBLE. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, July 23, 2007 1:55 PM To: CF-Talk Subject: RE: MySQL Client I like HeidiSQL formerly known as MySQL-Front. http://www.heidisql.com/ -Original

RE: Invoking CFC with Javascript onclick event

2007-07-19 Thread Andy Matthews
Well, jQuery makes this very simple. You might look into that. www.jquery.com -Original Message- From: Joel Watson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 19, 2007 8:34 AM To: CF-Talk Subject: Invoking CFC with Javascript onclick event I have a simple two field form that I would

RE: How do I properly check for an empty string?

2007-07-19 Thread Andy Matthews
Put brackets or parentheses around the variable so that you can easily tell if there's white space in there. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Thursday, July 19, 2007 12:48 PM To: CF-Talk Subject: Re: How do I properly check for an empty string?

RE: Time for another CF hosting site thread...

2007-07-17 Thread Andy Matthews
The files you're storing don't technically have to be on the same server. You could have two servers, one used as a media server, the other as your main domain server. Just a thought. -Original Message- From: Peter Donahue [mailto:[EMAIL PROTECTED] Sent: Monday, July 16, 2007 4:50 PM

RE: Current time in seconds

2007-07-17 Thread Andy Matthews
Not built in. But I'll bet you could find one on CFLib.org. And what do you mean by current time in seconds? Are you talking about like a unix timestamp? -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 8:17 AM To: CF-Talk Subject: Current

RE: Current time in seconds

2007-07-17 Thread Andy Matthews
DateFormat, CreateDate or CreateODBCDate will do that. You just have to specify the mask on your own. DateFormat(Now(),'mmdd')TimeFormat(Now(),'hhss') Would return 20070717090133 -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 8:42 AM

RE: Spider / Site Map Tool

2007-07-17 Thread Andy Matthews
ColdFusion 8 can create PDFs, maybe it can also read links inside them? -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 8:58 AM To: CF-Talk Subject: Re: Spider / Site Map Tool Claude Schneegans wrote: I have just been tasked to find/build a

RE: Simple JS math?

2007-07-17 Thread Andy Matthews
That's cool Barney. I didn't know it would be quite that efficient. Any performance hits using eval? -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 17, 2007 10:46 AM To: CF-Talk Subject: Re: Simple JS math? num + eval(frac) The latter operand

RE: Simple JS math?

2007-07-17 Thread Andy Matthews
Doing it that way you can't. One is a string, the other's a number. You'd have to first convert the fraction into it's decimal representation. You could prolly write a function to do that. Something like this would work: str = '3/8'; function convertDecimal(str) {

RE: Breaking up a DB query into pages

2007-07-16 Thread Andy Matthews
Depends on which database you're using. With mySQL, you can do this: SELECT id, name FROM tablename LIMIT 0,9 The 0 indicates where to start, and the 9 indicates how many records to return. Used in conjunction with a URL based paging system, that query might look like this: SELECT id, name

RE: createodbcdate

2007-07-16 Thread Andy Matthews
That should work. I've done the same thing with DateFormat. Try DateAdd(). -Original Message- From: Peter Tanswell [mailto:[EMAIL PROTECTED] Sent: Monday, July 16, 2007 9:15 AM To: CF-Talk Subject: createodbcdate Hi there I am trying to finish an application. I want to create two

OT?: Getting user agent stats...

2007-07-16 Thread Andy Matthews
. Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ ~| ColdFusion 8 beta – Build next generation

Jump to a certain line in CFEclipse?

2007-07-16 Thread Andy Matthews
Anyone know what the shortcut or mapping in CFEclipse is to jump to a specified line number? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http

RE: Jump to a certain line in CFEclipse?

2007-07-16 Thread Andy Matthews
] Sent: Monday, July 16, 2007 2:28 PM To: CF-Talk Subject: Re: Jump to a certain line in CFEclipse? CTRL-L Andy Matthews wrote: Anyone know what the shortcut or mapping in CFEclipse is to jump to a specified line number? Andy Matthews Senior ColdFusion

RE: Time for another CF hosting site thread...

2007-07-16 Thread Andy Matthews
I've used GearHost.com for nearly 5 years. -Original Message- From: Brian Yager [mailto:[EMAIL PROTECTED] Sent: Monday, July 16, 2007 4:07 PM To: CF-Talk Subject: Time for another CF hosting site thread... I have a client that wants a fairly simple website. I REALLY want to use

RE: Jump to a certain line in CFEclipse?

2007-07-16 Thread Andy Matthews
/16/07, Andy Matthews [EMAIL PROTECTED] wrote: Anyone know what the shortcut or mapping in CFEclipse is to jump to a specified line number? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249

RE: Yet another article about how 'coldfusion never took off'

2007-07-13 Thread Andy Matthews
Agreed. I wouldn't pass that article around, or even bother commenting on it. -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, July 13, 2007 12:31 PM To: CF-Talk Subject: Re: Yet another article about how 'coldfusion never took off' Definitely flame bait.

RE: Query Result Problem

2007-07-12 Thread Andy Matthews
The query? -Original Message- From: Bill Fears [mailto:[EMAIL PROTECTED] Sent: Thursday, July 12, 2007 9:09 AM To: CF-Talk Subject: Query Result Problem We have a query that returns 53 records in Query Analyzer (which is correct) but that same query in a CF Page will only return 50

RE: Im Ashamed But Need Help

2007-07-12 Thread Andy Matthews
Could it simply be a permissions issue? Have you asked your hosting company to delete the folders for you? -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Thursday, July 12, 2007 11:21 AM To: CF-Talk Subject: RE: Im Ashamed But Need Help Hello guys,

RE: too many js libraries

2007-07-11 Thread Andy Matthews
He's talking about downloading the code in production to the client computer. You're talking about a build for the developer Jim. -Original Message- From: Jim Rising [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 11:06 AM To: CF-Talk Subject: RE: too many js libraries I like

RE: too many js libraries

2007-07-11 Thread Andy Matthews
Just an FYI, at CFUnited one of the Adobe engineers confirmed that the JS files in the final version of CF8 will be greatly compressed over what they are now. There will still be lots of files, but they'll be much smaller. -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED]

RE: too many js libraries

2007-07-11 Thread Andy Matthews
[mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 12:59 PM To: CF-Talk Subject: RE: too many js libraries -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 12:49 PM To: CF-Talk Subject: RE: too many js libraries He's talking about

RE: too many js libraries

2007-07-11 Thread Andy Matthews
well this deals with browser caching issues... Jim Rising Sr. Cold Fusion Developer ICGLink Inc. www.icglink.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 11:49 AM To: CF-Talk Subject: RE: too many js libraries He's talking about

RE: too many js libraries

2007-07-11 Thread Andy Matthews
You wouldn't want to expire that content though. You WANT to cache it. -Original Message- From: Jim Rising [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 2:06 PM To: CF-Talk Subject: RE: too many js libraries I figured it would be an issue with browser caching... Hence the

RE: too many js libraries

2007-07-11 Thread Andy Matthews
Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 1:47 PM To: CF-Talk Subject: RE: too many js libraries Would probably be better to include javascript.cfm, which then writes each individual script tag to the page. Otherwise the browser is only going to try

RE: SURVEY RESULTS: Is ColdFusion OO?

2007-07-10 Thread Andy Matthews
I'd agree...ColdFusion is strong as it is now. Of course it can be improved, but if Adobe adds too many of these advanced language constructs in, then ColdFusion will lose what made it popular in the first place. Namely the ability to rapidly develop internet applications. -Original

<    4   5   6   7   8   9   10   11   12   13   >