Re: MySQL Comparison Tool

2008-02-01 Thread Josh Nathanson
y small investment. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/C

Re: Mail list manager recommendations

2008-01-30 Thread Josh Nathanson
ing list app but only found something called Magic List Pro, and it doesn't have a bounce manager which is a requirement for us. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to da

Re: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Josh Nathanson
ssue. Not sure what the problem is though, everything there looks hunky dory to me. -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 28, 2008 9:16 PM Subject: ColdFusion, MySQL 5.0.45, cfqueryparam,

Re: IE Browser Session Dropping

2008-01-23 Thread Josh Nathanson
on that way. I'm not a security expert by a long shot, hopefully someone else may chime in. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial h

Re: Syntax error (missing operator) in query expression

2008-01-23 Thread Josh Nathanson
SELECT * FROM Users WHERE (getUser.UserLogin = '#Form.UserLogin#') AND (getUser.Password' = '#Form.Password#') You have an extra single quote after getUser.Password. -- Josh ~| Adob

Re: IE Browser Session Dropping

2008-01-23 Thread Josh Nathanson
ng cookies and thus drop the session. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http:/

Re: This evaluate thing always stumps me...

2008-01-21 Thread Josh Nathanson
That should do it, and without the need for Evaluate. -- Josh - Original Message - From: "Les Mizzell" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, January 21, 2008 10:23 AM Subject: This evaluate thing always stumps me... > This evaluate th

Re: cfdocument size

2008-01-11 Thread Josh Nathanson
t optimizes any images, while if you use cfdocument, it will use the raw unoptimized images. Just a guess though. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Re: Loading plain text into Flash

2008-01-09 Thread Josh Nathanson
,chr(13)&chr(10)) I doubt the syntax is exactly correct there but I bet you could tweak it to get it to work. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: Adobe ColdFusion IDE survey

2008-01-08 Thread Josh Nathanson
ser base and can't be ignored by Adobe. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archiv

Re: OT: DNS question...

2008-01-07 Thread Josh Nathanson
olks who could probably answer your question pretty definitively: http://groups.google.com/group/Google_Webmaster_Help-Indexing/topics There were some people on that board who were very helpful when I had some questions. -- Josh ~~~

Re: Viviotech Outage

2008-01-04 Thread Josh Nathanson
There is a huge storm in Northern California right now...lots of power outages...is that where they're located? -- Josh - Original Message - From: "Rick Root" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, January 04, 2008 11:09 AM Subject: Viviotech O

Re: Struct Issue

2008-01-03 Thread Josh Nathanson
where it's getting a string from. It looks like it might be getting it from session.systemMessageStruct. -- Josh ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Re: another date format problem

2008-01-02 Thread Josh Nathanson
You want to do the DateAdd first (so put it on the inside), then the DateFormat: #DateFormat(DateAdd("d",7,startdate), "yyy.mm.dd")# -- Josh - Original Message - From: "Mark Fuqua" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday,

Re: parameter required but was not passed in

2007-12-28 Thread Josh Nathanson
the Message Gateway component to "know" about the message component, but that's not how it works - you must explicitly init the message object before passing it to the Message Gateway object. -- Josh - Original Message - From: "Vincent Jones" <[EMAIL PROTECTED

Re: How to dynamically rewrite this code...

2007-12-27 Thread Josh Nathanson
ing has changed, I think he'll be fine using a query to get his menu content. Maybe Rick could enlighten us by letting us know approximately how many page views a day he expects the site to receive. -- Josh ~| Adobe® Cold

Re: How to dynamically rewrite this code...

2007-12-27 Thread Josh Nathanson
x27;s already written. The difference is so minimal that it's not worth worrying about, unless you are working on something getting HUGE traffic. It would be overcomplicating, I think, to use an XML/XSL solution for this problem. -- Josh ~

Re: Another RegEx question...

2007-12-20 Thread Josh Nathanson
I think you need ReFindNoCase, otherwise it will return empty string. -- Josh - Original Message - From: "Todd" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, December 20, 2007 11:58 AM Subject: Re: Another RegEx question... > listLast(URL,&#x

Re: 'The selected method functionName was not found.' error.

2007-12-18 Thread Josh Nathanson
I think you can also get this error if the method is set to "access='private'" but it is not being called from within the component. -- Josh - Original Message - From: "h k" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, December

Re: on error handler

2007-12-06 Thread Josh Nathanson
# -- Josh - Original Message - From: "Richard White" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, December 06, 2007 12:27 PM Subject: Re: on error handler > thanks Todd, > > this link shows that i can send an email and display a custom error pag

Re: Flash Form Select List Wierdness

2007-12-05 Thread Josh Nathanson
Is the select list located near the bottom of the page? I think this will cause it to open "up" so that it doesn't run off the bottom of the page. -- Josh - Original Message - From: "Bruce H. Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wed

Re: Convert Letters to Numbers in Phone Numbers

2007-12-04 Thread Josh Nathanson
Just to add to that, I have been receiving the messages in reverse order. That is, I receive a lot of the answers before I even receive the question. -- Josh - Original Message - From: "Claude Schneegans" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday,

Re: Unterminated string literal

2007-11-30 Thread Josh Nathanson
Richard, I think you will want those newlines to be actually kept in the javascript, rather than interpreted as a newline at runtime. Maybe you could escape it, something like this: I bet if you futz around with that a bit, it might get you a bit closer. -- Josh - Original

Re: cffile destination

2007-11-16 Thread Josh Nathanson
ExpandPath("../tempUploads") is what you're looking for. -- Josh - Original Message - From: "Richard White" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Friday, November 16, 2007 10:06 AM Subject: cffile destination > hi, > > i a

Re: cfinput type="file" width

2007-11-16 Thread Josh Nathanson
can use an image as the browse button. http://www.appelsiini.net/projects/filestyle -- Josh ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe

Regex Gunslingers

2007-11-13 Thread Josh Nathanson
side quotes. So: "the quick brown fox \r\n jumps over the \r\n lazy dog" <-- remove the \r\n's My name is mud \r\n <-- leave this one alone I'm sure this is probably easy for the regex gurus... -- Josh ~

Re: sms

2007-11-12 Thread Josh Knopp
their phones. Not sure if that will help in your case, but if it's an adequate solution it might save a headache. Happy coding, Josh Knopp https://www.ourams.com/ > Hello, > > I would like to make an application that would allow one of our sales > reps to use their cell phon

Download Management with CF

2007-11-12 Thread Josh Knopp
as no knowledge of a "download complete" event. Has anyone found a decent solution for this problem? If it requires a separate ActiveX control or other plugin, does anyone know of a good one? Thanks in advance! Josh Knopp https:/

Re: Adding Properties to an Object at Runtime

2007-11-12 Thread Josh Nathanson
that. Then add your properties/values as keys/values to this struct. Then when you need to figure out what properties have been added you could get the keys from that additionalProperties struct, and to get the values you could loop over it as a

Re: Javascript enabled

2007-11-10 Thread Josh Nathanson
> thanks for all your replies, i was just wondering josh.. i was interested > in what you said about the ajax call, is this > something simple to do... if so could you provide a short example of the > ajax call? Sure, I use jQuery and it looks like this - keep in mind I have alread

Re: Javascript enabled

2007-11-10 Thread Josh Nathanson
check if the user has turned off JS during the session. However, it may work well enough for your needs -- it's extremely rare that someone turns js on or off in the middle of a session, or ever for that matter. Generally, it's either on or off. -- Josh - Original Message --

Re: Tracking down server issues MX 7

2007-11-08 Thread Josh Nathanson
as well. It's a Flex interface which is easy to work with. Others use FusionReactor and seem to like it a lot. Either one will give you a lot of useful information, and they are both very affordable. -- Josh ~| Che

Re: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread Josh Nathanson
Mark Drew did a post a few days ago on setting up CF/Leopard - there's a lot of good information there: http://www.markdrew.co.uk/blog/index.cfm/2007/10/27/Running-ColdFusion-8-on-Leopard -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]>

Re: CFDocument to make dynamic pdf file - CFADMIN

2007-10-30 Thread Josh Nathanson
sing? At my host, upgrading to 7.02 fixed the problem. -- Josh ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next generation app

Re: Copying a CFC Persisted in Session Scope

2007-10-29 Thread Josh Nathanson
ct's values. -- Josh ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoff

Re: What can PHP do that CF can't?

2007-10-19 Thread Josh Nathanson
7;s all coming back now...5.25" floppy disks...Apple II+...green monitor...dot matrix printer... -- Josh ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers.

Re: What can PHP do that CF can't?

2007-10-19 Thread Josh Nathanson
> GOTO CFCOMMUNITY Sorry, it's Friday afternoon...I'm done now. ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/wiki/index.php/ColdFusi

Re: What can PHP do that CF can't?

2007-10-19 Thread Josh Nathanson
> There are $ signs in front of variable names in Basic? Not that I recall, but it's been about twenty years. GOTO 100, heh heh... -- Josh ~| Get the answers you are looking for on the ColdFusion Labs Forum dir

Re: DNS not specific to ColdFusion

2007-10-17 Thread Josh Nathanson
Beware of the implications if you are using cookies to track sessions or otherwise. myDomain.com != www.myDomain.com, so, if you are allowing either with www or without, I believe you would need to set "setDomainCookies= true" in your App.cfc of cfapplication tag. -- Josh

Re: An error occured while Parsing an XML document

2007-10-16 Thread Josh Nathanson
rning a plain string "success!". That string will not validate as XML. -- Josh - Original Message - From: "Tim Do" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Tuesday, October 16, 2007 2:27 PM Subject: An error occured while Parsing an XML documen

Re: Automated Way of Getting ## of lines of code?

2007-09-28 Thread Josh Nathanson
> If you are using Coldfusion for those pages, you are either: > a) Commenting a lot > b) Not using CF functions properly. Well, that's kind of a silly assumption -- possibly, Brad's application is much larger in scope, and thus requires

Re: NOT 0 = "no"?!?! and NOT 1 = "yes"?!?!

2007-09-27 Thread Josh Nathanson
> Thanks Josh! That is awesome - i like clean simple code ( getting spoiled > with javascript as I dive deeper into that language lol ) Yup I love the JS style as well. I even used cfscript recently just so I could use my JS formatting skillz. > It should be noted that CF treats &q

Re: NOT 0 = "no"?!?! and NOT 1 = "yes"?!?!

2007-09-27 Thread Josh Nathanson
I just did a test and this works: #Int(not 0)# returns 1 #Int(not 1)# returns 0 -- Josh - Original Message - From: "John Skrotzki" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, September 27, 2007 2:56 PM Subject: NOT 0 = "no"?!?! and NOT 1 = &q

Re: CFDocument Question

2007-09-24 Thread Josh Nathanson
tion a page break: -- Josh - Original Message - From: "Bruce Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, September 24, 2007 10:59 AM Subject: CFDocument Question >I checked the docs and I don't think that this is possible, but I >

Re: Darn syntax

2007-09-20 Thread Josh Nathanson
> >. >cachedwithin="#cache_time#" I have that exact syntax working in one of my templates now. That should definitely work. Is it throwing an error, or does it not appear to be caching the query? -- Josh ~

Re: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Josh Nathanson
plus some other nifty stuff. Sounds like it might work for you - it's not part of a framework -- once the objects are generated you can edit them as needed. -- Josh ~| Get involved in the latest ColdFusion discussions, p

Re: Getting error message on one page only

2007-09-13 Thread Josh Nathanson
u think they are. I had a situation recently where a mapping was pointing to my https (secure) directory. I was uploading cfcs to the http (non-secure) directory, so they didn't seem to be updating. -- Josh ~| ColdFus

Re: Odd database behavior: duplicate key error

2007-09-11 Thread Josh Nathanson
on a single server, so I think the named lock is the best option for me in this case. I will definitely keep cftransaction in mind, if I have a situation which seems to merit it more definitively. -- Josh ~| Download the l

Re: Odd database behavior: duplicate key error

2007-09-10 Thread Josh Nathanson
Thanks Jake and Barney, I'll lock it and see if that helps. -- Josh - Original Message - From: "Jake Pilgrim" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, September 10, 2007 2:50 PM Subject: Re: Odd database behavior: duplicate key error > If

Odd database behavior: duplicate key error

2007-09-10 Thread Josh Nathanson
Hey all, In an inherited application, we have the following pseudo-code - two queries, one right after the other: DELETE FROM table WHERE ID = '#myidstring#' INSERT INTO table (ID) VALUES ('#myidstring#') Given this scenario, it would seem that you could never have a duplicate key error,

Re: Dynamic named CFC and method

2007-09-07 Thread Josh Nathanson
> You don't have to get that complex. Just do > > I think he said the component name was dynamic as well as the method though, so he'd need to do this: -- Josh ~| ColdFusion 8 - Build next generation ap

Re: Creating XML from RecordSet

2007-09-05 Thread Josh Nathanson
converting it back to string anyway. It will work fine but it's not necessary. -- Josh ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.

Re: Creating XML from RecordSet

2007-09-05 Thread Josh Nathanson
e there's no need to convert to an XML object. dynamic content here - use XMLFormat to clean out bad xml characters Then cffile to write the "myxml" string to a file. -- Josh ~~

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

2007-09-05 Thread Josh Nathanson
There is always... -- Josh - Original Message - From: "Dominic Watson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, September 05, 2007 8:33 AM Subject: Re: structKeyExists() - Ok, this is freakin me out > One possible answer and I believ

Re: application.cfc question

2007-08-27 Thread Josh Nathanson
ly the same thing. You could add the function right in App.cfc, then use cfinvoke to call the method, but I feel for cleanliness App.cfc should just contain those native functions (onApplicationStart etc.). -- Josh ~| Create

Re: Complex query for experts?

2007-08-22 Thread Josh Nathanson
(SELECT product_id FROM productsXcategories WHERE category_id = [desired category here]) GROUP BY order_products.product_id HAVING Count(product_id) > 1 -- Josh - Original Message - From: "Mike | NZSolutions Ltd" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wedne

Re: Easy-to-develop recurring billing?

2007-08-16 Thread Josh Nathanson
sticking point for my clients. That sounds cool. It seems Authorize.net is always behind the times. I guess when you are the 800 pound gorilla you don't have to try as hard. -- Josh ~| Get involved in the latest Co

Re: Easy-to-develop recurring billing?

2007-08-16 Thread Josh Nathanson
I never heard back. I had to remove them manually with a replace. -- Josh ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/a

Re: Skype is down world wide

2007-08-16 Thread Josh Nathanson
pe they get it fixed soon. I used the free service recently when my GF was in Europe and it was fantastic. -- Josh ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion

Re: Scrape pages from RSS Feed

2007-08-15 Thread Josh Nathanson
t;read" to read it into a variable as a string, and XMLParse(yourvar) to turn it into a structure. Then you can use structure notation to get the data out. -- Josh ~| Download the latest ColdFusion 8 utilities including Report Bui

Re: Data Validation Resources

2007-08-14 Thread Josh Nathanson
ng from the form to the action page. The cfc I posted will still work exactly the same, it's not dependent on where the config string is defined. -- Josh ~| Get involved in the latest ColdFusion discussions, product develo

Re: Data Validation Resources

2007-08-14 Thread Josh Nathanson
get altered by an ordinary Joe? I haven't had any issues yet, but if it's a realistic possiblity then I'll need to change my implementation. It seems like you have to rely on the client to some degree when p

Re: Data Validation Resources

2007-08-14 Thread Josh Nathanson
are kicked back in an array or a string if you like. Once this is up and running and cached in the Application scope, in your action page you just do something like: Here's the code if you want to have a look: http://

Re: I'm Old - ColdFusion 4.x

2007-08-09 Thread Josh Nathanson
u can start serving .cfm pages on your local machine (work or home) right away. Finally, if you need a quick tag or function reference online, check out http://www.cfquickdocs.com. Welcome back to CF! -- Josh ~| Check

Re: MySQL front end...

2007-08-09 Thread Josh Nathanson
>I also searched a lot but the best one looks like Navicat. +1 for Navicat, best $99 I ever spent. -- Josh ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusio

Re: SQL Server problem getting records within date range

2007-08-08 Thread Josh Nathanson
han '2007-08-02', so that won't be picked up by less than or equal to. -- Josh - Original Message - From: "C. W. B." <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, August 08, 2007 5:37 PM Subject: Re: SQL Server problem getting records within

Setting session param in onRequestStart

2007-08-08 Thread Josh Nathanson
situation and done anything differently. -- Josh ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.c

Re: JS Question Hide/Show Form Elements

2007-08-03 Thread Josh Nathanson
> HIDE: document.getElementById('idOfElement').style.display='none' > SHOW: document.getElementById('idOfElement').style.display='block' Or in jQuery: $("#idofelement").hide(); $("#idofelement").show(); -- Josh

SOT: MySQL/JDBC Broken Pipe Errors

2007-08-02 Thread Josh Nathanson
Hey all, On a shared server, MySQL 4.1, CF7. I have my application set to email me errors. I started getting "broken pipe" errors this morning every couple of minutes. I have googled around but there are a lot of different opinions as to the cause. Just hoping someone has run across this be

Re: CFChart -- Bar chart data labels problem

2007-08-01 Thread Josh Nathanson
> I'm having a problem with my bar charts created with CFChart. Can you post an image somewhere so we can see what it looks like? - Josh ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax

Re: CF error

2007-08-01 Thread Josh Nathanson
You have to put your var declarations after your cfargument tags, and before everything else in the function. That's just "the way it is". -- Josh - Original Message - From: "Chad Gray" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, Augus

Re: Missing posts

2007-07-26 Thread Josh Nathanson
There is something up with the mail server. I had about an 18-hour gap, then got a bunch, now another 2 or 3 hour gap. -- Josh - Original Message - From: "Phillip Vector" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, July 25, 2007 7:18 PM Subject: Missi

Re: Possible race conditions, need locking?

2007-07-17 Thread Josh Nathanson
>> This is not somewhere where a named lock should be required. >> >> This is a case of a variable somewhere along the stream not being >> var'd properly. Update: it was a var-ing issue.

Re: Session Variable Types

2007-07-16 Thread Josh Nathanson
> "What types of session variables do you use?" I'd say "the kind that stay in RAM when you are using session management and you navigate from page to page in a web application." -- Josh ~|

Re: Possible race conditions, need locking?

2007-07-16 Thread Josh Nathanson
ut I thought since this CFC is cached in the Application scope that would be more appropriate. I'll give the named lock a try. -- Josh ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIA

Re: Possible race conditions, need locking?

2007-07-16 Thread Josh Nathanson
> Josh, > > Sounds more like your not var'ing your variables properly. > > Make sure that the variable inside the gateway.cfc that is the query > is var'd properly. Yup, it's var'ed. I slapped an exclusive lock around the method call,

Possible race conditions, need locking?

2007-07-16 Thread Josh Nathanson
st want to make sure I'm doing it right. Here's what my code looks like: Do I have that right for what I need to do, namely prevent the threads from crossing when reading in the data. -- Josh ~| Create ro

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

2007-07-13 Thread Josh Nathanson
ntly forget to close tags or confuse capitalizations." Implying that if you forget to close a CFML tag it will still work. That's just a bunch of malarkey. -- Josh ~| Upgrade to Adobe ColdFusion MX7 The most signif

Re: Query in a function

2007-07-12 Thread Josh Nathanson
, lastName FROM Users WHERE active = '1' AND userID = This way you can either pass in or not pass in the userID, and you should get the results you're looking for. -- Josh - Original Message - From: "Steve Sequenzia" <[EMAIL PROTECTED]> To: "CF-Ta

Re: Query in a function

2007-07-12 Thread Josh Nathanson
> WHERE active = '1' OR (#arguments.userID# > 0 AND userID = > #arguments.userID#) That won't quite work...it will return all users where active=1, even if userID is specified. -- Josh ~| Upgrade

Re: cfoutput acting weird ... need another set of eyes

2007-07-10 Thread Josh Nathanson
, you would have to have some seriously funky code going on, but that would produce the output you're seeing. Perhaps you could do a simple test to make sure the cookie value is 1 rather than 1. -- Josh - Original Message - From: "Ian Skinner" <[EMAIL PROTECTED]&g

Re: mxAjax - IE bogs down on a long select menu...

2007-07-05 Thread Josh Nathanson
into the DOM. Or, it could be the way mxAjax is handling the DOM insertion. Some JS experts may have more info. -- Josh - Original Message - From: "Will Tomlinson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, July 05, 2007 4:48 PM Subject: Re: mxAjax

Re: mxAjax - IE bogs down on a long select menu...

2007-07-05 Thread Josh Nathanson
goofy"? - Any way to trim the number of items in the menu? - Your CF code looks fine. Do you have a link? -- Josh ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIA’s for your business. Upgrade now

Re: ColdFusion Template Engine?

2007-07-05 Thread Josh Eby
>Jeff > >I wrote a template parser about 6 years ago that I never released but >would be willing to share the code if you're interested in seeing it. > >It's documented here: > >The code is hideous, it's CF 4.5 era code and I wrote it obviously a >long long time ago :) > >http://www.clicksite

Re: cflogin

2007-07-05 Thread Josh Nathanson
cfc or .cfm per application. Of course there are times when it can't be avoided, but IMHO it's worth some refactoring to get to a single App.cfc or .cfm. -- Josh ~| ColdFusion MX7 and Flex 2 Build sales &

Re: Does a component know its parent?

2007-07-03 Thread Josh Nathanson
f you have a bunch of components that need to have this ability, you might want to create a base class "trace", put the properties/getters/setters there, and have your components extend that class. -- Josh ~| Create We

Re: Would this be tacky?

2007-07-03 Thread Josh Nathanson
ginating page" in memory over a few subsequent page requests, then be able to go back to that originating page. My understanding is that cgi.http_referrer only holds a single referring page. -- Josh ~| ColdFusio

Re: Would this be tacky?

2007-07-03 Thread Josh Nathanson
tarting point. This is exactly the kind of thing that session variables are best used for. To save you from having to pass everything via form or url, when doing a multi-page implementation. I say go for it! -- Josh ~| Co

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

Re: Time Question

2007-07-02 Thread Josh Nathanson
> You should be able to do DateAdd to do this - or just use DateDiff as Ian said. -- Josh ~| ColdFusion 8 beta – Build next generation applications today. Free beta download on Labs http://www.adobe.com/cfus

Re: Time Question

2007-07-02 Thread Josh Nathanson
subtract secs from the 12:00 time using a negative value for DateAdd: DateAdd("s",-secs,periodlength) Something like that anyway... -- Josh ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF

Re: Using CFINVOKE in onApplicationEnd

2007-06-29 Thread Josh Eby
I pass the application scope using an argument... which is ok to do... then my app vars are accessible via #arguments.applicationScope.varname#... I have discovered this problem only seems to happen in my tests on CF8... It works fine on CF7... is there anyone else running CF8 for testing purpos

Using CFINVOKE in onApplicationEnd

2007-06-28 Thread Josh Eby
Has anyone else ever had a problem invoking a method from another component within onApplicationEnd I used cftry to catch the error: coldfusion.xml.rpc.CFCServlet cannot be cast to coldfusion.runtime.CFPage ~~

Re: Calling a CFC within onApplicationEnd

2007-06-28 Thread Josh Eby
I am currently having the same issue... when I use cfinvoke in my onApplicationEnd... doesnt matter what component, what method it fails everytime... I used cftry to catch the error... coldfusion.xml.rpc.CFCServlet cannot be cast to coldfusion.runtime.CFPage Any help for the two of us would be

Re: Easy-to-develop recurring billing?

2007-06-27 Thread Josh Nathanson
surprised if someone's already whipped up a CFC / UDF for it...if there is one, give us a link! -- Josh ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http:/

Re: css in blog layout

2007-06-27 Thread Josh Nathanson
verlap columns or push down the right column underneath the main content. It looks like it might be the Google docs screenshot image that's the culprit. -- Josh ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experience

Re: Component Question

2007-06-26 Thread Josh Nathanson
our local CF Administrator to reflect the different naming convention. It would probably look something like: /Comps -- C:\pathtoVTICompsdirectory\ -- Josh ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard

Re: StringTokenizer in coldfusion???? - Urgent

2007-06-25 Thread Josh Nathanson
> I mean i need to get the results as > 1)A > 2)& > 3)B You could just loop the value as a list, with space as the delimiter: Also you could do listToArray, but that would be an extra step. -- Josh ~| C

Re: CF Editor

2007-06-25 Thread Josh Nathanson
been silky smooth. -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, June 25, 2007 9:08 AM Subject: RE: CF Editor > The CFEclipse plugin might be niche, but Eclipse in general is getting > lots > of pre

Re: Outputting Text (with html code)

2007-06-22 Thread Josh Nathanson
Looks like maybe you need to escape the "#" in your href by putting two pound signs: To: "CF-Talk" Sent: Friday, June 22, 2007 4:11 PM Subject: Re: Outputting Text (with html code) > Hi Dan: > > Thanks for the info: > > I tried your code, but it through me an error, which I listed at the end

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