RE: Using CFLock around a query

2007-05-08 Thread Ben Nadel
What kind of lock are you doing? Scope/name/exclusive? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08

RE: Add Together Values of Dyanamic Fields

2007-05-04 Thread Ben Nadel
) + (objInput2.value * 1); Of course, there is no validation here. I have to *1 to make sure that it KNOWS not to do string concatenation, but rather mathematical addition. Does that help? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: Online WYSIWYG Editors

2007-05-04 Thread Ben Nadel
I still stand by Xstandard :) it has licensing issues that might make it Not Right for your client's situation... But it is a totally bad-ass XHTML compliant editor. http://www.bennadel.com/blog/tags/15-XStandard-WYSIWYG-blog-entries.htm .. Ben Nadel Certified Advanced

RE: Online WYSIWYG Editors

2007-05-04 Thread Ben Nadel
to that one), but I still use absolute paths as it just makes life easier. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Casey Dougall [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Query Object

2007-05-03 Thread Ben Nadel
Coincidentally, I just wrote about this in response to someone else's question. Not sure if any of this would help you: http://www.bennadel.com/blog/674-Ask-Ben-Adding-A-Column-From-Second-Que ry-To-First-Query.htm OR: http://www.bennadel.com/index.cfm?dax=blog:674.view This doesn't talk about

RE: dump http hit

2007-05-02 Thread Ben Nadel
cfmail to=.. cfdump var=#FORM# / cfdump var=#URL# / cfdump var=#GetHttpRequestData()# / /cfmail Data can really only come from the URL, FORM, or the header info. Does that help? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need

RE: dump http hit

2007-05-02 Thread Ben Nadel
Ooooh. Maybe I misunderstood. My example assumes that data is being posted TO you. Andy's assumes that data is PULLED BY you. Both good examples. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben

RE: dump http hit

2007-05-02 Thread Ben Nadel
. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 02, 2007 12:21 PM To: CF-Talk Subject: RE: dump http hit Yes

RE: cfscript vs. cfml

2007-05-01 Thread Ben Nadel
, or was just to point out that they compile differently? But if there is a speed difference, as Andrew says, now that its MX, its gonna be insignificant. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben

RE: Javascript regex question...

2007-05-01 Thread Ben Nadel
Probably not the best solution, but a very quick one (to come up with, not processing time): ListGetAt( YOUR_CONTENT, 2, ) Treat the content a quote-delimited list. Then the second list item is the first value. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: Javascript regex question...

2007-05-01 Thread Ben Nadel
Oh whoops. Didn't realize you were in javascript. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01

RE: Javascript regex question...

2007-05-01 Thread Ben Nadel
Oh, THAT Javascript :) .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 4:50 PM To: CF-Talk

RE: Error recovery

2007-04-30 Thread Ben Nadel
, this does not exist. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, April 30, 2007 12:32 PM To: CF-Talk Subject

RE: Error recovery

2007-04-30 Thread Ben Nadel
Whap happens if you try to CFDump out the VARIABLES scope? Does it throw an error? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Claude Schneegans [mailto:[EMAIL

RE: Error recovery

2007-04-30 Thread Ben Nadel
debugging here. Put in temp code to help debug, narrow it down, fix, then remove the debugging code. Let's not lose sight of what the long-term goal is. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben

RE: Error recovery

2007-04-30 Thread Ben Nadel
it to be tremendously helpful :) .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Monday, April 30, 2007 4:20 PM To: CF-Talk Subject: Re

RE: Error recovery

2007-04-30 Thread Ben Nadel
reproduce? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, April 30, 2007 4:47 PM To: CF-Talk Subject: Re

RE: Regex remove everything but this string

2007-04-24 Thread Ben Nadel
in a list. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 24, 2007 10:41 AM To: CF-Talk Subject: Re

RE: Regex

2007-04-24 Thread Ben Nadel
REReplace( your_text, ,?\s*\d+$, , ONE ) ,? = optional comma \s* = zero or more spaces \d+ = one or more digit $ = end of string .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original

RE: Query to get avg pageviews per hour

2007-04-23 Thread Ben Nadel
Can you just GROUP BY the HOUR() of the time? Then get the COUNT()... To get the average, it might then just be easier to divide that COUNT() by the day difference you put in. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: CSS layered div problem

2007-04-23 Thread Ben Nadel
; position: relative ; } div#content img{border: 1px solid #003366;} div#content .promobox { Position: absolute ; top: 100px; Left: 0px ; border: solid 1px #00; width: 200px; height: 100px; Z-index: 100 ; } . See if that helps. .. Ben Nadel Certified

Emergency Problem with ColdFusion

2007-04-17 Thread Ben Shichman
PROTECTED] Thanks!!! Ben ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features. http://www.adobe.com/products/coldfusion?sdid=RVJR Archive: http://www.houseoffusion.com

RE: Basic CFM shopping cart tutorial/Dreaweaver extension

2007-04-16 Thread Ben Nadel
I have also just wrote a very small demo for some quite simple Wish List / Cart style CFC for someone else. Not sure if this is enough to inspire: http://www.bennadel.com/blog/637-Ask-Ben-Creating-A-Simple-Wish-List-Sho pping-Cart.htm Or : http://bennadel.com/index.cfm?dax=blog:637.view I think

RE: Parsing CSV

2007-04-16 Thread Ben Nadel
as well as embedded delimiters and qualifiers: http://bennadel.com/blog/501-Parsing-CSV-Values-In-To-A-ColdFusion-Query ..htm Or: http://bennadel.com/index.cfm?dax=blog:501.view .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: Basic CFM shopping cart tutorial/Dreaweaver extension

2007-04-16 Thread Ben Nadel
in the real world. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Monday, April 16, 2007 9:00 AM To: CF-Talk

RE: Using CFCs in session scope - need cflock help

2007-04-15 Thread Ben Forta
... I did not say that you must always lock, I said that you should lock to prevent race conditions if those are an issue. As many others have already stated, race conditions are not necessarily problems, although they could be so. --- Ben -Original Message- From: Sean Corfield [mailto

RE: CFHTTP not working?

2007-04-13 Thread Ben Nadel
What is the error it is returning? It has to be a fully qualified URL... You can't use ./page.cfm type notation. It needs the whole HTTP:// stuff. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben

RE: file do more than one scheduled task ??

2007-04-10 Thread Ben Nadel
. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 7:24 PM To: CF-Talk Subject: Re: file do more than one

RE: Small Question: any vs viod

2007-04-10 Thread Ben Nadel
is that by using void you are bypassing what ever return-value handling mechanism needs to get put in place... Is it faster? Mabye my nanoseconds. Is it better for memory usage? Again, maybe infiteceimally better. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com

RE: Structures

2007-04-09 Thread Ben Nadel
Sure thing (I think): cfset objValues = StructNew() / cfset objValues[ A ] = b / cfset objValues[ C ] = d / cfset objValues[ E ] = f / cfset objValues[ F ] = h / .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: help with datefield

2007-04-06 Thread Ben Nadel
Just use some sort of javascript. input type=button value=Clear Date onclick=this.forms.datepicker.value = ''; / .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From

RE: Adobe takes UK price hikes to new level with CS3

2007-04-06 Thread Ben Nadel
Michael, your post is wy OT ;) -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, April 06, 2007 5:04 PM To: CF-Talk Subject: Re: Adobe takes UK price hikes to new level with CS3 I've been asked to try and moderate this list a bit more to make it

RE: QoQ - remove all instances of value from Query1 in Query2?

2007-04-05 Thread Ben Nadel
What do you use to determine the match? An entire record must match? Or just a primary key? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Peterson, Chris [mailto

RE: QoQ - remove all instances of value from Query1 in Query2?

2007-04-05 Thread Ben Nadel
I can't remember offhand if QofQ allows the IN clause: SELECT * FROM q1 WHERE q1.pkey NOT IN ( #ValueList( q2.pkey )# ) Or you could do a more manual query: SELECT * FROM q1 WHERE 1 = 1 cfloop query=q2 AND q1.pkey != #q2.pkey# /cfloop .. Ben Nadel Certified Advanced

RE: SQL Query Help

2007-04-04 Thread Ben Nadel
invoice i ON inv.invoice_id = i.id We create an interim table that has JUST the customer id and MAX invoice Id. Then we join that to customers, and then join that to invoices (only were the max id = the invoice id). .. Ben Nadel Certified Advanced ColdFusion MX7

RE: Session or Cookie or....?

2007-04-04 Thread Ben Nadel
There is way it would be a SESSION with a super long timeout - that would eventually kill the server I think (as the session information would be stored in the server's RAM). It must be a cookie is my guess. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: Listing TODOs in CF files

2007-04-04 Thread Ben Nadel
Pete, I don't know what the REExtract thing does exactly, but it might be something like this: http://www.bennadel.com/index.cfm?dax=snippets:11.view This users Java regular expressions to grab all matching content and return it in a ColdFusion array. .. Ben Nadel

RE: SQL question

2007-04-03 Thread Ben Nadel
function you call on the date column. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ ~| Create Web Applications With ColdFusion MX7

RE: SQL question

2007-04-03 Thread Ben Nadel
). .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 10:30 AM To: CF-Talk Subject: RE: SQL question Ben, Ok... Nicely done

RE: SQL question

2007-04-03 Thread Ben Nadel
related links if you are interested: http://www.bennadel.com/blog/226-ColdFusion-Date-Math-Faster-Than-Date-M ethods-And-Other-Date-Math-Ramblings.htm http://www.bennadel.com/blog/311-Ask-Ben-Looping-Through-The-Days-In-A-M onth.htm http://www.bennadel.com/blog/285-Caution-ColdFusion-Zero-Date-vs

RE: SQL question

2007-04-03 Thread Ben Nadel
Try putting single quotes around the dates (so it know you are not doing division). dateCreated = '04/02/2007' AND dateCreated ('04/02/2007' + 1) .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben

RE: SQL question

2007-04-03 Thread Ben Nadel
Hmm, MS SQL must do the cast behind the scenes. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 03, 2007 11

FW: Using 404 error to automatically redirect...

2007-04-02 Thread Ben Nadel
Brett, Here is an example of how I do it: http://www.bennadel.com/blog/286-Handling-404-Errors-in-ColdFusion-via-I IS-Throwing-404-.htm [ OR http://www.bennadel.com/index.cfm?dax=blog:286.view ] Hope maybe that gives you some ideas. .. Ben Nadel Certified Advanced

Re: maxlength on text area - how to approximate

2007-04-02 Thread Ben Doom
Do an additional check onsubmit. That way, even if they paste more than you want to allow, it will get caught client-side. --Ben Doom http://www.bendoom.com Les Mizzell wrote: Does anybody have a really good way to create the equal of maxlength on a text area? The server running site

Memory issues with new daylight savings update?

2007-04-02 Thread Ben Nadel
have any of these problems until we upgraded the JVM using updater 7.02. Thanks! .. Ben Nadel Certified Advanced ColdFusion Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 x 14 212.691.3477 fax www.nylontechnology.com http

RE: Anyone have quick help - how to refer to a dynamic named query?

2007-04-02 Thread Ben Nadel
These queries are defined in the Variables scope of the page (or the THIS scope if you are in a CFC): #VARIABLES[ getCompanyTractorStats#curDay# ].myCol# .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask

RE: Memory issues with new daylight savings update?

2007-04-02 Thread Ben Nadel
Hmmm, I did not set up the server or install the patches (and do not understand the server stuff). I will run this by my manager see if he can make more sense of it. Thanks for you input. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Cfcontent type=application/word style ignored??

2007-03-30 Thread Ben Nadel
Oooh. That is good to know :) I had no idea what they did that. Thanks for the tip. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Jochem van Dieten [mailto:[EMAIL

RE: Printing a page without the standard header and footer

2007-03-30 Thread Ben Nadel
I am not sure of this offhand, but I think if the data is a HUGE table, then using the THEAD and TFOOT tag within the TABLE tag willactually print the table header/footer on each page... Not the same as the page header/footer, but at least it's a start. .. Ben Nadel

RE: This is why CFMX kicks ass

2007-03-29 Thread Ben Nadel
Nicely done. And yes, CF does rock! .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Jonathan Block [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 1:58 AM

RE: Is there an Apollo developer's mailing list?

2007-03-29 Thread Ben Nadel
Michael, if I did NOT want to subscribe to this hidden list, where would I NOT send an email? ;) -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 9:49 AM To: CF-Talk Subject: Re: Is there an Apollo developer's mailing list? If there

RE: Limitations of CF's PDF Generator in Creating PDFs for Printing

2007-03-29 Thread Ben Forta
for ColdFusion Scorpio. In that version we maintain (and improve) the existing PF generation capabilities (cfdocument and cfreport) and add PDF manipulation functionality as well as PDF form fill/get. --- Ben -Original Message- From: Matthew Kuehn [mailto:[EMAIL PROTECTED] Sent: Thursday

Re: regex question in rereplace

2007-03-29 Thread Ben Doom
You can certainly do it with a regex, but it might be more efficient to do it with a pair or replace() calls. Regex is inherently expensive. If you want to do it with regex, Jacob's suggestion should work. --Ben Doom Scott Stewart wrote: I’ve got a variable which is a document descriptor

RE: Is there an Apollo developer's mailing list?

2007-03-29 Thread Ben Nadel
Double-negatives don't not rock - They don't make everything easier to not read :) -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 11:53 AM To: CF-Talk Subject: Re: Is there an Apollo developer's mailing list? Please be gentle... I am

RE: (Admin) New Lists

2007-03-29 Thread Ben Nadel
Swet :) .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 2:45 PM To: CF-Talk Subject

RE: SQL Question?

2007-03-29 Thread Ben Forta
Disk space is cheap. If there is ever a chance that you'll need other characters embedded in text sometime in the future, then it pays to sacrifice the extra space and use the N data types now. --- Ben -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Cfcontent type=application/word style ignored??

2007-03-29 Thread Ben Nadel
I find that word (as web page) puts 3D in front of each of it attributes: p style=3Dcolor:black; Here is text /p I think it is 3D but it might be something else. What kind of document is it really? Is it really just an HTML page that is being used by Word? .. Ben

RE: ExpandPath help

2007-03-27 Thread Ben Nadel
some of that helps. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Joel Watson [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 8:51 AM To: CF-Talk Subject

RE: Regex

2007-03-27 Thread Ben Nadel
list item. ColdFusion will ignore these when you try to do future list manipulation stuff. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Richard Cooper [mailto:[EMAIL

RE: CFDocument image issue

2007-03-27 Thread Ben Nadel
) or an HTML style URL? You might simply be pointing to the wrong place. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: CFDocument image issue

2007-03-27 Thread Ben Nadel
John, CFDocument might be having issues with HTTP calls to the SAME server. If your images are on a remote server, that doesn't route back into the current one, there is a good chance that the HTTP calls will be fine. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: Validation Question

2007-03-27 Thread Ben Forta
I'm with Dave. It sounds like you want to suck the data into a temporary table in your DBMS, and then use a SP to process it (or a trigger to process each row perhaps) moving or updating rows as needed. This type of processing is what DBMS' were designed and built to do. --- Ben -Original

RE: arguments.exception.type values

2007-03-27 Thread Ben Nadel
... But I am not 100% sure. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Barthle, Robert (Contractor) [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 1:01 PM

Re: Help with List Comparisons, Output Logic

2007-03-27 Thread Ben Doom
. That is, if Sponsor 1 wants pages 3 and 4 and Sponsor 2 wants pages 4 and 5 you might end up with a table like this: LinkID SponsorID PageID 1 1 3 2 1 4 3 2 4 4 2 5 Does this make sense? --Ben Doom Joel Watson

Re: Help with List Comparisons, Output Logic

2007-03-27 Thread Ben Doom
, page_9, etc.). You can loop over the formfields list and extract them. Sorry if that's not clear, but I'm pretty tired. :-) --Ben Joel Watson wrote: Ben, Dinner-- Thank you both for the erudite responses. You have convinced me! Now for the million-dollar question: As mentioned, I am

RE: date compare

2007-03-26 Thread Ben Nadel
with NO time. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 11:04 AM To: CF-Talk Subject: RE: date

RE: New Features In Scorpio

2007-03-26 Thread Ben Forta
Not yet, but stay tuned ... --- Ben -Original Message- From: james carberry [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 11:18 AM To: CF-Talk Subject: Re: New Features In Scorpio Ben - Are there any screenshots available that depict the presentation layer appearance

RE: Sitemaps

2007-03-23 Thread Ben Nadel
This might be a ghetto approach, but to get a general idea, maybe to a domain-specific search in google with no keywords... And just check the results count: Ex: http://www.google.com/search?q=site%3Abennadel.com .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: CF + Ajax

2007-03-23 Thread Ben Nadel
/index.cfm?dax=blog:565.view So far, I have really enjoyed the consistency and error catching that it provides. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Bader

RE: New Features In Scorpio

2007-03-22 Thread Ben Forta
to be. Of course, it is not for everyone, just as the embedded rich text editor is not for everyone. There will always be CF developers who want more control and who thus prefer to do things themselves, but for many CFers, cfform is a great set of shortcuts. --- Ben -Original Message- From

RE: including functions

2007-03-21 Thread Ben Nadel
( component_name ) and you can handle all of the path stuff in the CreateCFC() method which will be higher than the current directory. Make sense? Here is a blog entry on the proof of concept (but not using CFCs exactly): http://www.bennadel.com/index.cfm?dax=blog:348.view .. Ben

RE: Renaming a query column?

2007-03-21 Thread Ben Nadel
Pete, Try this: http://www.bennadel.com/blog/357-Ask-Ben-Changing-ColdFusion-Query-Colum n-Names.htm [OR: http://bennadel.com/index.cfm?dax=blog:357.view] .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask

RE: including functions

2007-03-20 Thread Ben Nadel
will act just like you want them to. cfcomponent cfinclude template=_fn_IsValid.cfm / cfinclude template=_fn_HasErrors.cfm / cfinclude template=_fn_OtherMethod.cfm / /cfcomponent .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion

RE: GotCFM.com - Need Opinion on Whether to Approve a Site

2007-03-20 Thread Ben Nadel
I think we should totally exclude porn. It's not like the $10 billion that Americans alone spend on it each year (src: http://www.cbsnews.com/stories/2003/11/21/60minutes/main585049.shtml) event makes a blip on the grand scale of things ;) .. Ben Nadel Certified Advanced

RE: RegEx help

2007-03-20 Thread Ben Nadel
cfset value = REReplace( /level-1/2nd-level/index.cfm /([^/]+)/.*, \1, ONE ) / This puts the first directory (level-1) into the first group reference. Then it replaces the entire string with that group reference. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: RegEx help

2007-03-20 Thread Ben Nadel
I like Gareth solution better than mine. ListFirst is way more straight forward than a RegExp. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Gareth Hughes [mailto

RE: No ColdFusion Here

2007-03-20 Thread Ben Forta
Have you asked them why they don't offer ColdFusion hosting? For those hosting companies that want to, we've worked with them to make sure it is possible and cost effective. But they have to want to. --- Ben -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent

RE: Can anyone tell me why someone would do this?

2007-03-19 Thread Ben Nadel
. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 9:26 AM To: CF-Talk Subject: Can anyone tell me why someone

RE: TC's and Privacy Policy

2007-03-19 Thread Ben Nadel
If you can't find anything, you might want to just find one you like on another site and swap out the names ;) I have no idea of the legal ramifications of this... Does the copy right cover the copy right itself??? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: including functions

2007-03-19 Thread Ben Nadel
assuming this would not work (or am I just not understanding what you meant)? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Leitch, Oblio [mailto:[EMAIL PROTECTED

RE: including functions

2007-03-19 Thread Ben Nadel
Can you show us the code for the function definition And then also the snippet that invokes the method. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Leitch

Re: MySQL Syntax (4.1)

2007-03-18 Thread Ben Doom
Subqueries weren't introduced until 4.1. Check the top of the 4.x doc page for confirmation if you like. --Ben Doom Matt Quackenbush wrote: Oooops. I just found out that this particular database is actually 4.0.27, and not 4.1. According to a few articles that I've found, the 1064 error

Manually re-point CFMX to updated JVM

2007-03-16 Thread Ben Mueller
? Perhaps my changing an XML file somewhere? Thanks in advance, Ben Mueller ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive

Re: Manually re-point CFMX to updated JVM

2007-03-16 Thread Ben Mueller
use the web-based administrator to re-point CFMX to the right JVM. Is there a way to do this manually? Perhaps my changing an XML file somewhere? Thanks in advance, Ben Mueller ~| ColdFusion MX7 by Adobe® Dyncamically

RE: Need some help with this Regex...

2007-03-15 Thread Ben Nadel
logic is screwey... What are you trying to do (in english)? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, March

Re: OT: Job posting

2007-03-15 Thread Ben Doom
You might have better luck posting on CF-Jobs -- the House of Fusion jobs posting list. -- Ben Doom Andy Matthews wrote: I've never done this before, but I figured it couldn't hurt. Dealerskins is hiring and I thought I might post the job here. Feel free to ask me questions if you like

Re: Build Admin tool once, reuse on other sites

2007-03-13 Thread Ben Doom
Well, depending on your setup, you might create a CF mapping that points to the admin. --Ben [EMAIL PROTECTED] wrote: All, Say I have three sites all on the same clustered server. I've built one admin tool, let's say a press release admin tool which will be located on site #1. Now I

Re: Daylight Savings Time Change (Slightly OT, but relevant)

2007-03-13 Thread Ben Mueller
. Thanks, Ben Thanks for the info! Rick -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Saturday, March 10, 2007 12:21 PM To: CF-Talk Subject: Re: Daylight Savings Time Change (Slightly OT, but relevant) Rick Faircloth wrote: the Java install that comes (for me

Re: Daylight Savings Time Change (Slightly OT, but relevant)

2007-03-13 Thread Ben Mueller
That's pretty much the answer I was looking for. Thanks, Eric. Ben Adobe wont support you if you install past 1.4.2_11 so if you dont have support your fine Eric On 3/13/07, Ben Mueller [EMAIL PROTECTED] wrote: ~| Create

RE: variables scope app.cfc methods

2007-03-12 Thread Ben Nadel
the variable at all. Just set variable names. ColdFusion by default puts these into the VARIABLES scope of the page. However, since you are in a component, this might not work (they might go into THIS scope). Try the non-scoping method and see if that works. .. Ben Nadel

RE: variables scope app.cfc methods

2007-03-12 Thread Ben Nadel
). The better test might be: cffunction name=OnRequest cfinclude template=#ARGUMENTS[ 1 ]# / /cffunction Then in the included template, do this: cfset foo = bar / cfdump var=#VARIABLES# / See if foo shows up in that one. .. Ben Nadel Certified Advanced ColdFusion MX7

RE: cfimport vs. cfmodule/cf_MyTag for Custom Tag Calls

2007-03-12 Thread Ben Nadel
CFImport allows you to create tag prefixes. You can also use a template path (which cf_tagname does not have). I think it's a very elegant way to group tag functionality. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help

RE: cfimport vs. cfmodule/cf_MyTag for Custom Tag Calls

2007-03-12 Thread Ben Nadel
Very true. Also, I know that CFImport cannot have dynamic template path (ie. No ## in the template attribute). Not sure if CFModule is the same way (but I guess that it probably is). .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion

RE: What is wrong with this?

2007-03-12 Thread Ben Nadel
Trim it... Might be white space. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Monday, March 12, 2007 5:13 PM

RE: What is wrong with this?

2007-03-12 Thread Ben Nadel
What happens if you use zeros instead of nines #NumberFormat(Trim(Get_Property_Details.Sale_Price), )# .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Rick

Re: Hash Algorithems

2007-03-09 Thread Ben Doom
, such that it will work just as well as your password. It might be a 197 character piece of junk, but it will still work. Of course, I in this case is a hypothetical me who had read about how to actually accomplish this, as opposed to having read about how it is possible. --Ben

Re: Data truncation:

2007-03-09 Thread Ben Doom
*facepalm* Syntax gets you every time, doesn't it? --Ben Doom Deepak Gupta wrote: got it instead of AND i have to use comma. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new

Re: How to unsubscribe

2007-03-09 Thread Ben Doom
Try the link marked unsubscribe at the bottom of every email. :-) --Ben Doom Richard Colman wrote: I need to unsubscribe for a month while on vacation. I went to houseoffusion.com and can't find any way to do this. Very frustrating. HELP please. Richard Colman

RE: Getting file name after uploading

2007-03-09 Thread Ben Nadel
with whatever variable you used. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Steve Good [mailto:[EMAIL PROTECTED] Sent: Friday, March 09, 2007 4:45 PM To: CF-Talk

RE: Convert XML doc to array or structure or query?

2007-03-09 Thread Ben Nadel
Andy, Technically, I think an XML document is structured as nested structures and arrays. Can you give us perhaps a super small XML example and what kind of structure you are thinking of creating? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com

<    2   3   4   5   6   7   8   9   10   11   >