RE: DRK releases

2003-07-09 Thread Dave Watts
> So what does MM mean when it says "available to > non-subscribers" ? If you subscribe to Devnet, you'll get all of the DRKs before they're available for general sale. If not, you can purchase each individually for about $99 USD when they become available for general sale. Dave Watts, CTO, Fig

Re: ColdFusion Server x Hardware

2003-07-09 Thread Michael T. Tangorre
I would definitely separate the DB from the application server... - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:41 AM Subject: RE: ColdFusion Server x Hardware > I would segregate them. > > put cf5 on one

Re: OT: Need to disable print button or at least trap and display a message.

2003-07-09 Thread ksuh
You could use the onbeforeprint event to hide the page before it prints. But, it could be that perhaps the form should be reworked so that it's easier for users? How about if faxed requests are simply rejected? - Original Message - From: "Ciliotta, Mario" <[EMAIL PROTECTED]> Date: Wedne

Re: DRK releases

2003-07-09 Thread Michael T. Tangorre
C'mon MM, hook us up and make it free! :-) - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:54 AM Subject: RE: DRK releases > > So what does MM mean when it says "available to > > non-subscribers" ? > > If

RE: OT: Need to disable print button or at least trap and display a message.

2003-07-09 Thread A.Little
You can also use style sheets to determine what gets printed as opposed to what users view on screen - so just use a media="print" stylesheet and make it blank - or something! eg: We use this method so that people don;t end up printing all the menu/banners etc from webpages. But I've found this

Re: DRK releases

2003-07-09 Thread Thomas Chiverton
On Wednesday 09 Jul 2003 16:52 pm, Michael T. Tangorre wrote: > C'mon MM, hook us up and make it free! :-) There is a lot of cool stuff in the DRKs - most of which you *could* write yourself, but not for $99 of your hours (that's 2 - 4 hours work for most of us, I reckon). If you're only going

Re: DRK releases

2003-07-09 Thread Mike Chambers
Just to clarify, if you subscribe to DevNet Pro or DevNet Essentials you get access to the DRKs 3 months before they are available for individual sale to non-subscribers. However, there will be some new info on this very soon (hint, I am doing a section during the FlashForward keynote tomorrow mor

Re: OT: Need to disable print button or at least trap and display a message.

2003-07-09 Thread Jim Campbell
This could also then be controlled with Javascript... perhaps setting each printable element's visibility aspect to "visible" when it's been filled out - maybe on an onBlur event if there's content in the field or something like that. - Jim A.Little wrote: >You can also use style sheets to de

re: Printing coupons

2003-07-09 Thread Bushy
Hi, I have a page with 5 coupons being displayed. I want to be able to print each coupon individually and not as a complete page. My idea would be to click on a "print" button under the coupon. Load another page that would call just the coupon but "hide" that window and execute the print. Then

Re: cftransaction quick question

2003-07-09 Thread Adam Churvis
> I would test this carefully because I'm not convinced that CFTRANSACTION can be used to control the actions of a SP. I believe it is for CFQUERY only. Can anyone confirm this? > > Yes, you can return success/failure codes from the SP to CF, but at that point all the SP's queries have executed a

Re: OT: Need to disable print button or at least trap and display a message.

2003-07-09 Thread Scott Brady
-- Original Message -- From: [EMAIL PROTECTED] >But, it could be that perhaps the form should be reworked so that it's easier for >users? How about if faxed requests are simply rejected? I think the idea is that the form is supposed to be printed and faxed

Re: OT: Need to disable print button or at least trap and display a message.

2003-07-09 Thread Scott Brady
You know, perhaps another option is user training. On the form, have (in bold print, if necessary) a message explaining that they need to fill out all the information on screen prior to printing. Any forms faxed in with hand-written data will be rejected. Scott

RE: cftransaction quick question

2003-07-09 Thread Robertson-Ravo, Neil (RX)
what if you want to perform an action, open a transaction , view the results and the commit/rollback depending on status? -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 17:02 To: CF-Talk Subject: Re: cftransaction quick question > I would test this car

OT: update query

2003-07-09 Thread Phillip B
I have two tables. tableA id name region tableB id name region I need to update tableA's region colum with tableB's region colum. The region colum has changed for some and not for others. With that said, does this look right? UPDATE tableA SET region = (SELECT region FROM tableB WHERE tabl

RE: cftransaction quick question

2003-07-09 Thread David Collie (itndac)
Hi Adam, Cheers for the pointers, as usual a few queries > 3) Transactions must be controlled as close to the data as > possible, so stored procedures must have their own > transactional controls and either succeed or fail as a single > call. Don't "return an error code"; just throw an e

Re: Dynamic CF_Customtag Call?

2003-07-09 Thread Sean A Corfield
On Wednesday, Jul 9, 2003, at 02:59 US/Pacific, Adrian Lynch wrote: > What about building up the string, writing it to a file, then > including it. Bear in mind that such generated-then-included files will need to be compiled by CF so you'll get a performance hit (a big one in CFMX, not such a

Re: Beta Testing RedSky

2003-07-09 Thread Sean A Corfield
On Wednesday, Jul 9, 2003, at 03:15 US/Pacific, Calvin Ward wrote: > Having said that, is there more material available on Mach-II > somewhere? Not until Ben and Hal publish more (some!) information on http://www.mach-ii.com/ There was information (about Fusebox MX) on http://beta.fusebox.org/

RE: cftransaction quick question

2003-07-09 Thread Barney Boisvert
You can certainly do SELECT statements within a transaction, and then depending on what is returned, decided whether or not to rollback or commit. If you want to get user input, that's impossible. There's no way to bridge a transaction across multiple requests. You'd have to manually undo the tr

RE: update query

2003-07-09 Thread Tony Weeg
I would do a cfquery of all columns in b. then loop through that, for each iteration, update a with the value of some b query column value. make sense? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Origina

Re: cftransaction quick question

2003-07-09 Thread Adam Churvis
> what if you want to perform an action, open a transaction , view the results > and the commit/rollback depending on status? 1) You must never, never, _never_ prompt for user response inside a transaction! The Database 101 Fairy will smack you upside your head with his widdoo wand! Think about

RE: CF5 to MySQL without ODBC

2003-07-09 Thread Matt Robertson
>Versoin 3.23.49-nt. Any recommendations for or against moving to MySQL 4.0? That's not the last but one of the later versions. 3.23.53 was the last one I remember seeing. I would absolutely upgrade. One thing 4.x has over 3.x is a cache that cranks speed up significantly. Also 4.x is now p

Community Project: Visual RegEx Editor

2003-07-09 Thread Michael Dinowitz
There is a powerful tool included in ColdFusion that few use to its full power. This tool is Regular Expressions and the reason that few use it is obvious, it's not made for people. The solution is to have an editor to use Regular Expressions without having to jump through a 1001 mental hoops. I've

RE: cftransaction quick question

2003-07-09 Thread Robertson-Ravo, Neil (RX)
hmm, I think you will be shocked by what db system schema people will generate etc... ;-) -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 17:23 To: CF-Talk Subject: Re: cftransaction quick question > what if you want to perform an action, open a transac

Re: Beta Testing RedSky

2003-07-09 Thread Howard Fore
On Wednesday, Jul 9, 2003, at 06:15 US/Eastern, Calvin Ward wrote: > Having said that, is there more material available on Mach-II > somewhere? The PowerPoint from Hal and Ben's presentation at CFUN-03 is available at http://www.cfconf.org/cfun-03/talks/FuseboxMXII_Helms.ppt -- Howard Fore, [E

File Name/Directory?

2003-07-09 Thread Govind Bhat
Hi all, We are getting this error with CFMX and Spectra 1.52 Directory and file exists but, CF generates this error? Thanks in advance Regards Govind Bhat Visit us at www.50plus.com Filename/directories are different This is in D:\CFusionMX\runtime\logs\default-err.log 07/09 0

Re: cftransaction quick question

2003-07-09 Thread Adam Churvis
> Are you saying that this type of code is wrong/inefficient/bad practice? It is wrong. You only have one statement, so it is an atomic action in and of itself. This makes the statement an implicit transaction as far as the database is concerned, so it need not be defined as part of an explicit

Re: cftransaction quick question

2003-07-09 Thread Adam Churvis
> hmm, I think you will be shocked by what db system schema people will > generate etc... ;-) What do you mean? Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive ColdFusion MX Training ColdFusion MX Master Class: July 14 - 18, 2003 http://www.ColdFusionTraining.com

Re: update query

2003-07-09 Thread Phillip B
That is what I would normally do but it has to be part of a DTS package and will be ran everyday :( Phillip B. www.LoungeRoyale.com www.FillWorks.com - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:25 AM Subjec

RE: I knew your name was Neo

2003-07-09 Thread Matt Robertson
Ben said, >I think most people on this list went >through what you've gone through. I would amend that to read "I think most people ~who complained~ on this list went through what you've gone through." RTFA(rchives) already. Can we beat this subject more to death? Maybe another 20 posts endle

RE: CF5 to MySQL without ODBC

2003-07-09 Thread Barney Boisvert
One thing to watch is dates. If you're using datetime columns, you can no longer specify a date like this: 20030709 You have to make it a string, and 14 digits long (to include the time): '2003070900' The recomended format is '/mm/dd hh:mm:ss', which is mo

Re: File Name/Directory?

2003-07-09 Thread Randell B Adkins
Whats the error? >>> [EMAIL PROTECTED] 07/09/03 12:35PM >>> Hi all, We are getting this error with CFMX and Spectra 1.52 Directory and file exists but, CF generates this error? Thanks in advance Regards Govind Bhat Visit us at www.50plus.com Filename/directories are differe

Re: Zip code search

2003-07-09 Thread Pablo Varando
A tutorial if you want to build it from scratch :) http://tutorial153.easycfm.com/ Pablo - Original Message - From: "chad" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, July 07, 2003 8:50 AM Subject: Zip code search > Does anyone know of a good coldfusion customt

Re: I knew your name was Neo

2003-07-09 Thread Christian Cantrell
On Wednesday, July 9, 2003, at 04:13 AM, Ben Koshy wrote: > Updater 3 seems to have resolved most of the major > issues. Not a great start for early adopters though. I hope they're > taking note... I would just like to make sure that people know that Macromedia absolutely has been taking note,

RE: update query

2003-07-09 Thread Andy Ewings
Hi If the link is ID then your query looks ok the following will do it. UPDATE tableA SET region = TableB.region FROM tableB, TableA WHERE tableB.id = tableA.id -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 17:40 To: CF-Talk Subject: Re: update query

RE: update query

2003-07-09 Thread Tony Weeg
so you have to do it all in sql server logic? well, then, SQL Experts mount up tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: Wednes

RE: Strange MYsql Error

2003-07-09 Thread Matt Robertson
I personally always use the cfsqltype CF_SQL_Numeric for everything in mySQL, although all of my fields tend to be just plain type int() (id fields are 'unsigned'). Maybe switching to that would help? Also I don't use the maxlength parm. No idea if that's got any bearing on your problem, but its

Re: Why can't COM just work in CFMX?

2003-07-09 Thread Christian Cantrell
Matt, You might want to give this a try with RedSky before committing to an ASP solution. It contains an upgrade to the bridge between CFMX and COM, and fixes several issues. Christian On Tuesday, July 8, 2003, at 02:58 PM, Matt wrote: > Ok, two lines that basically do the same thing, one in

RE: CF5 to MySQL without ODBC

2003-07-09 Thread Matt Robertson
y Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 9:46 AM To: CF-Talk Subject: RE: CF5 to MySQL without ODBC One thing to watch is dates. If you're using datetime columns, you can no longer specify a date like this: 20030709 You have to make it a string, and 14 di

Re: DRK releases

2003-07-09 Thread Christian Cantrell
On Wednesday, July 9, 2003, at 11:59 AM, Thomas Chiverton wrote: > On Wednesday 09 Jul 2003 16:52 pm, Michael T. Tangorre wrote: >> C'mon MM, hook us up and make it free! :-) > > There is a lot of cool stuff in the DRKs - most of which you *could* > write > yourself, but not for $99 of your hour

RE: Why can't COM just work in CFMX?

2003-07-09 Thread Matt
Christian, How do I get RedSky? I've seen it mentioned on this list before, but never really looked into it. Thanks, Matt -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 12:56 PM To: CF-Talk Subject: Re: Why can't COM just work in CFM

RE: Creating a list with infinite groupings and indents

2003-07-09 Thread Sarah
I think this is pretty much the same thing that others have pointed you towards, but I think this article might be easier to read: http://www.sitepoint.com/article/1105 Sarah At 7/9/2003 11:10 AM, you wrote: >BTW Joe Clecko had an entire book on trees coming soon > >"TREES & HIERARCHIES IN SQL

Re: update query

2003-07-09 Thread Phillip B
I will give it a try. Thanks a lot Phillip B. www.LoungeRoyale.com www.FillWorks.com - Original Message - From: "Andy Ewings" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:55 AM Subject: RE: update query > Hi > > If the link is ID then your quer

RE: CF5 to MySQL without ODBC

2003-07-09 Thread Barney Boisvert
- > Matt Robertson [EMAIL PROTECTED] > MSB Designs, Inc. http://mysecretbase.com > > > -Original Message- > From: Barney Boisvert [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 09, 2003 9:46 AM > To: CF-Talk > Subject: RE: CF5 to MySQL wit

RE: I knew your name was Neo

2003-07-09 Thread Costas Piliotis
Yay! Redhat 8 and 9 support! Finally :) -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 9:50 AM To: CF-Talk Subject: Re: I knew your name was Neo On Wednesday, July 9, 2003, at 04:13 AM, Ben Koshy wrote: > Updater 3 seems to have

RE: Is there a difference between CFMX on Linux and Windows?

2003-07-09 Thread Pete Freitag
> I only just put together the proposal for us to buy DRK3. Aaron Johnson wrote a free Java CFX tag that uses Apache Lucene for searching, check it out here: http://cephas.net/blog/archives/cat_lucene.html _ Pete Freitag http://www.cfdev.com/ Author: T

File Name/Directory?

2003-07-09 Thread g . bhat
Here is the error message in the browser. Error Occurred While Processing Request File not found: /health/index.cfm Please try the following: * Check the CFML Reference Manual to verify that you are using the correct syntax.

Re: DRK releases

2003-07-09 Thread Calvin Ward
I hope they don't make them free :) I just hope they keep adding more useful items to them, especially for ColdFusion! - Calvin - Original Message - From: "Michael T. Tangorre" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:52 AM Subject: Re: DRK

Re: CF5 to MySQL without ODBC

2003-07-09 Thread Jochem van Dieten
Barney Boisvert wrote: > > where datefield between '2002:07:09 00:00:00' and '2003:07:09 00:00:01' > > The delimiter used is inconsequential, you can use pretty much any > punctuation character, and you can use several in a single value (2003:07/09 > 00+00-00). I use colons throughout for cons

Re: I knew your name was Neo

2003-07-09 Thread Calvin Ward
I don't see the value in your continuing to bemoan about how frustrated your experience was. Did you have a specfic *technical* issue or question that the users of this list can help you address, or are you just venting? - Calvin - Original Message - From: "Mahmut Basaran" <[EMAIL PROTE

Re: Beta Testing RedSky

2003-07-09 Thread Calvin Ward
I got the newsletter, and that's what really got me interested! - Calvin - Original Message - From: "Sean A Corfield" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:52 AM Subject: Re: Beta Testing RedSky > On Wednesday, Jul 9, 2003, at 03:15 U

Re: File Name/Directory?

2003-07-09 Thread Randell B Adkins
The error: File not found: /health/index.cfm means that at that LEVEL in that given directory the sub directory of HEALTH either does not exist or the INDEX.CFM does not exist. So if you are at: http://localhost/myAPP/ and you use the function either CFINCLUDE or Whatever that is would be look

Re: Why can't COM just work in CFMX?

2003-07-09 Thread Christian Cantrell
On Wednesday, July 9, 2003, at 01:29 PM, Matt wrote: > Christian, > > How do I get RedSky? I've seen it mentioned on this list before, but > never > really looked into it. RedSky is the codename for the upcoming maintenance release of ColdFusion. It will be out this summer, and it will be a f

RE: Why can't COM just work in CFMX?

2003-07-09 Thread Tony Weeg
free upgrade regardless of subscription status? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:38 PM

RE: Why can't COM just work in CFMX?

2003-07-09 Thread Ben Forta
Free upgrade to registered users of CFMX. --- Ben -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 3:14 PM To: CF-Talk Subject: RE: Why can't COM just work in CFMX? free upgrade regardless of subscription status? tony weeg uncertified advan

RE: I knew your name was Neo

2003-07-09 Thread Ben Koshy
> I would just like to make sure that people know that Macromedia > absolutely has been taking note, and with RedSky, you will see a huge > improvement with respect to not just installation, but in many other > areas, as well. Macromedia chose to spend a great deal of time and > energy on RedS

Good VTML Edtior?

2003-07-09 Thread Rich Z
Is there a good VTML edtior out there? Does homesite have vtml editor? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&foru

JSP 10X faster than CFM?

2003-07-09 Thread Rich Z
I've heard that JSP is that much faster than CFML. I even read somewhere its 10X faster. Is this true? -Rich ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_l

Re: I knew your name was Neo

2003-07-09 Thread Frank Mamone
Same rules as CFMX Updaters. So, if you have a legal registered copy it will be free for you. -Frank - Original Message - From: "Ben Koshy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 3:31 PM Subject: RE: I knew your name was Neo > > I would just

Re: I knew your name was Neo

2003-07-09 Thread Michael Dinowitz
RedSky is a free upgrade for those who have a registered copy of CFMX. Its basically the same as updater 3, 2 and 1. > > I would just like to make sure that people know that Macromedia > > absolutely has been taking note, and with RedSky, you will see a huge > > improvement with respect to not ju

RE: Good VTML Edtior?

2003-07-09 Thread Raymond Camden
As far as I know, no. This is probably the _only_ thing I don't like about HS+/Studio/HS - the difficulty of writing a VTM. Of course, in the "old days", you actually had to restart the program when you edit a VTM. Ick! === R

RE: I knew your name was Neo

2003-07-09 Thread Tony Weeg
oh, cool. so its not a *MAJOR RELEASE* more of a consummate updater with lots of bug fixes...? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTE

RE: I knew your name was Neo

2003-07-09 Thread Angel Stewart
*dresses in party attire with little island hat* *wiggles excitedly* *grabs for confetti to throw into air* When! When! When! *bounces around room* When when! Is there going to be a party? Am I invited??? ... ... ... Will it be Free Drinks? ^_^ -Gel -Original Message- From: Christian C

Re: I knew your name was Neo

2003-07-09 Thread Michael Dinowitz
Well, the upgrades to specific things that I can't mention makes it somewhere between a bug fix and a major release. More on the major side, but not exactly full major. Once they put in then it'll be totally fantastic. I'm really looking forward to the next release. > oh, cool. so its not a *MA

Re: I knew your name was Neo

2003-07-09 Thread Thane Sherrington
At 04:03 PM 7/9/03 -0400, Michael Dinowitz wrote: >full major. Once they put in then >it'll be >totally fantastic. I'm really looking forward to the next release. Do you mean you are really looking forward to the RedSky release, or the release after that? T Tired of your bookmarks/favourites

RE: JSP 10X faster than CFM?

2003-07-09 Thread Haggerty, Mike
I would not believe it - the performance advantage on any platform is dependent on any number of things, including the proficency of the person or team that set up the server. I could easily set up a BEA Web Logic server and have it *crawl* trying to serve up JSP pages next to a properly configured

RE: I knew your name was Neo

2003-07-09 Thread Raymond Camden
I can say there are a lot of nice CFC fixes (was given specific permission to mention them at mx on the rocks and cffun). You can download my presentations sometime later today (been lazy) or right now from cfconf.org/cfun-03 (or something like that). =

Re: JSP 10X faster than CFM?

2003-07-09 Thread Paul Hastings
> (if that is what you call them)? I support both JSP and CF installations and > have comparable benchmarks for each. and what do you say about their relative speeds (i'll bet cf develops faster ;-) ~| Archives: http://www.house

Re: I knew your name was Neo

2003-07-09 Thread jon hall
>From what I know not being part of the beta, I've been thinking of RedSky as CF v6.5. -- jon mailto:[EMAIL PROTECTED] Wednesday, July 9, 2003, 3:42:25 PM, you wrote: TW> oh, cool. so its not a *MAJOR RELEASE* more of a consummate updater TW> with lots of bug fixes...? TW> tony weeg TW> unce

Re: I knew your name was Neo

2003-07-09 Thread Michael Dinowitz
Both. Redsky is nice and I'm using it live on a site already (www.lotauctions.com). It has a lot of things that people will like and it'll be a worthy upgrade. The release after that is also going to be fantastic. I have to say this for those who think that MM is not focused on CF. They are. They h

RE: JSP 10X faster than CFM?

2003-07-09 Thread Dave Watts
> I've heard that JSP is that much faster than CFML. I even > read somewhere its 10X faster. Is this true? As a blanket statement, no. JSP is certainly faster at some operations; I would expect that CFMX may be faster at others. But in the long run, there are few web application server platforms

recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Hagan, Ryan Mr (Contractor ACI)
This brings up an interesting question for me. I tend to use recursive functions frequently, and have even had to solve a problem very similar to the original question posed in this thread. My take on the solution is the following (in php): itemIDitemparentID ---

Re: I knew your name was Neo

2003-07-09 Thread Sean A Corfield
On Wednesday, Jul 9, 2003, at 12:42 US/Pacific, Tony Weeg wrote: > oh, cool. so its not a *MAJOR RELEASE* more of a consummate updater > with lots of bug fixes...? I think a lot of people will feel it is a major release - even tho' it is being treated more like an updater. I've been upgrading ma

RE: I knew your name was Neo

2003-07-09 Thread Tony Weeg
same here...i have it on my two dev boxes, and with three (2 maybe) betas and 1 rc, no problems iis/win2k server/cfmx(redSky) rock-n-f**kin ro man tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Or

RE: I knew your name was Neo

2003-07-09 Thread Raymond Camden
> is being treated more like an updater. I've been upgrading machines > left, right and center to the latest available Red Sky build and I'm > very happy with it. I can't say any more than that. > I just want to plus one this. I don't think it's a violation of the NDA to say I'm _very_ psyched

RE: recursion in cold fusion ( was RE: Creating a list with infin ite groupings and indents )

2003-07-09 Thread Ian Skinner
I've done what you have done here with both CFC's and before the Custom Tags. It's fairly easy to right a recursive custom tag, since each call to the tag gets it's own attributes scope. This one is recursing over a Structure creating an indented tree select list. It could easily be modified to

RE: I knew your name was Neo

2003-07-09 Thread Joshua Miller
Anyone know a roundabout, approximate, not-held-to-anything-legal, guesstimate release date? Thanks, Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-0801 ext. 254 ***

Re: recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Paul Hastings
> First and foremost, we can't run queries inside of tags. Bummer. easy enough with a wrapper function. > Second, even if the query issue were resolved (and if you've got ideas for > work-arounds, I'd love to hear them), you've now got variable scope issues. > A variable declared in a CFMX page

Re: recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Sean A Corfield
On Wednesday, Jul 9, 2003, at 13:13 US/Pacific, Hagan, Ryan Mr (Contractor ACI) wrote: > function list_categories( $parentId, $level ) { > global $database, $connection; > $numSpaces = 5; > $query = "SELECT * FROM myTab

Re: I knew your name was Neo

2003-07-09 Thread Sean A Corfield
On Wednesday, Jul 9, 2003, at 13:24 US/Pacific, Joshua Miller wrote: > Anyone know a roundabout, approximate, not-held-to-anything-legal, > guesstimate release date? I think Christian said "this summer"... Sean A Corfield -- http://www.corfield.org/blog/ "If you're not annoying somebody, you're

RE: recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Barney Boisvert
Worth mentioning that you can use custom tags in a recursive manner. I have several recursive tree generators on various versions of CF that use custom tags, UDFs and CFC methods. custom tags and CFFUCTION-based UDFs (including CFCs) can have CFQUERY tags in them, although if you're making a quer

Re: recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Jochem van Dieten
Hagan, Ryan Mr (Contractor ACI) wrote: > > I personally like this solution quite a bit. I know it has performance > issues, but I've never noticed any significant impact on server response, > even under heavy load. I think it is an ugly workaround. SQL is a set oriented language and the best wa

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread jon hall
I looked at this method and all the others, and decided to go with the non-traditional method outlined here. http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=7321&lngWId=4 Much faster in just about every regard (except updating) than the below method, and sorting is built in. Ma

Switching from Standalone to CFMX J2EE: CFMX Enterprise for Sale !!

2003-07-09 Thread Stacy Young
It looks as though we may migrate to CFMX for J2EE finally. (on WebLogic) Anyhow, sorry for the OT but I just wanted to ping the community on whether anyone would be interested on one or two licenses (CFMX Enterprise) at a nicely reduced price. Cheers! Stace AVIS IMPORTANT: --

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread Matt Robertson
Jon Hall wrote: >I looked at this method and all the others, and decided to go >with the non-traditional method outlined here. >http://www.planet-source-code.com/vb/scripts/ShowCode.asp? >txtCodeId=7321&lngWId=4 Thats actually a fairly old idea. Always seemed to me that inserting records or reo

RE: JSP 10X faster than CFM?

2003-07-09 Thread Rich Z
FYI, here it is: http://www.halhelms.com/index.cfm?fuseaction=writings.displayOnScreen&wr iting=TenReasonsCompaniesLikeJava.htm "Java is a high-performance language. Java with JSP (similar to ColdFusion for presentation) is over 10 times faster than using ColdFusion. A single JSP server can handl

RE: JSP 10X faster than CFM?

2003-07-09 Thread Barney Boisvert
Java is faster than CF. C is faster than Java. Assembler is faster than C. C is easier than Assembler. Java is easier than C (no flames please). CF is easier than Java. For a given application, you have to pick a point on those two axes that best suits your needs. If it's a pure web applicat

RE: Anti-Spam Email harvesting

2003-07-09 Thread Mark Leder
I too use the Email Anti-Spam UDF from CFLib with great results. Also be sure to place a robots.txt file at the root directory to exclude most all spam bots. Thanks, Mark -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 2:43 PM To: CF-Talk Sub

RE: Good VTML Edtior?

2003-07-09 Thread Rich Z
In looking for an editor - I stumbled on this web-based one. VERY cool :) http://www.smartsofttools.com/vtmlbuilder/ -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 3:42 PM To: CF-Talk Subject: RE: Good VTML Edtior? As far as I know, no

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread jon hall
Wednesday, July 9, 2003, 5:13:02 PM, you wrote: MR> Jon Hall wrote: >>I looked at this method and all the others, and decided to go >>with the non-traditional method outlined here. >>http://www.planet-source-code.com/vb/scripts/ShowCode.asp? >>txtCodeId=7321&lngWId=4 MR> Thats actually a fairly o

RE: JSP 10X faster than CFM?

2003-07-09 Thread Dave Watts
> FYI, here it is: > > http://www.halhelms.com/index.cfm?fuseaction=writings.displayO > nScreen&writing=TenReasonsCompaniesLikeJava.htm > > "Java is a high-performance language. Java with JSP (similar to > ColdFusion for presentation) is over 10 times faster than using > ColdFusion. A single JSP

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread Matt Robertson
>I speak not for this guy...except to say he sounds pretty >typical of the average VB dork's I run into. I'll bet. I wasn't lumping you in with His Majesty's royal attitude. :D Did you look at Michael Dinowitz' cf_maketree? He mentioned it earlier on in this thread. I use it and its pretty c

Re: I knew your name was Neo

2003-07-09 Thread Scott Brady
-- Original Message -- From: Sean A Corfield <[EMAIL PROTECTED]> >I think Christian said "this summer"... So, those of you in Australia have to wait until at least December . . . . :) Scott Brady http://www.scottbrady.net/

Clarification on DRKs needed

2003-07-09 Thread raedwards
I'm looking at proposing a subscription to Devnet Professional. If i were to subscribe now, i assume i would be sent DRK3. Would i also get 2 and 1 for my investment? I'd get Studio MX, development servers and alot of other tools, but would i get the earlier releases of the DRKs? I've been e

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread jon hall
Wednesday, July 9, 2003, 5:50:33 PM, you wrote: >>I speak not for this guy...except to say he sounds pretty >>typical of the average VB dork's I run into. MR> I'll bet. I wasn't lumping you in with His Majesty's royal attitude. :D MR> Did you look at Michael Dinowitz' cf_maketree? He mentioned

Re: Creating a list with infinite groupings and indents

2003-07-09 Thread Michael Dinowitz
> MR> Did you look at Michael Dinowitz' cf_maketree? He mentioned it earlier on in this thread. I use it and its pretty cool. Its quite fast, and not that much slower than cfx_fMakeTree (which is > MR> blazing fast). > > I seriously doubt any method written in CF could come close to this > metho

RE: cftransaction quick question

2003-07-09 Thread Dave Watts
> Are you saying that this type of code is > wrong/inefficient/bad practice? > > > > > > some action sql > > > > > > > > > > >

RE: cftransaction quick question

2003-07-09 Thread Dave Watts
> 1) You must never, never, _never_ prompt for user response > inside a transaction! The Database 101 Fairy will smack you > upside your head with his widdoo wand! Adam, do you mind if I borrow that line? It's a keeper! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797

RE: ColdFusion Server x Hardware

2003-07-09 Thread Jim Davis
> -Original Message- > From: Rodrigo Cohen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 09, 2003 11:17 AM > To: CF-Talk > Subject: ColdFusion Server x Hardware > > > Dan and Tony, > > thanks for your reply ! > Well, i have more than 1000 users registered in my system and i have 40 >

CFFLUSH and IE5.x - 6.0

2003-07-09 Thread Ciliotta, Mario
Hi I was wondering if anyone has any experience with using cfflush and IE. I have been trying to get the results of a query to start flushing out to the screen but I have been unsuccessfully. The query usually returns about 150-200 rows. I cleaned up the page so that all the summing and tot

Why do I get an extra blank line?

2003-07-09 Thread Christopher P. Maher
In the following code, the source file ends with a CR/LF sequence. There are no blank lines. The resulting file which the user downloads (right clicks on the link that calls this code and picks save) has an extra CR/LF creating a blank line. It puzzles me that the file would get modified in this pr

<    1   2   3   >