RE: CFSET in CFMX

2002-12-08 Thread Jim Davis
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 2:38 AM To: CF-Talk Subject: RE: CFSET in CFMX It's really interesting - to me - to see such attention to such 'small' language details in terms of performance. ColdFusion is the

Re: CFSET in CFMX

2002-12-08 Thread Michael Dinowitz
In truth, I believe that I was the one who originated the test for these minor speed differences 'back in the days'. The reasoning was actually quite simple, different pieces of CF were coded internally in different ways. This could most readily be seen in the massive speed difference between IIF

RE: ColdFusion for kids

2002-12-08 Thread Jim Davis
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 2:22 AM To: CF-Talk Subject: RE: ColdFusion for kids I hate to be a wet blanket, but I'm not a big fan of teaching CF programming to kids, for several reasons. First, I'm not sure that

SOT: DevCon 2002 Diary Posted

2002-12-08 Thread Jim Davis
If anybody is interested I've (finally, a month late) posted my DevCon 2002 diary here: http://www.depressedpress.com/DepressedPress/Content/ColdFusion/News/Dev Con2002/Index.cfm It's mostly opinion (mine) so reader beware, but if you're wondering what happens at the show or want another POV

Request for testing a possible bug

2002-12-08 Thread Jim Davis
I posted a few days about a possible bug in MX. I've made a set of test files that demonstrate the problem and I'd like to get some independent validation of my insanity. The problem that I see is that a link, within a CFLOCATION, that includes the URL parameter threadID comes up blank (no

Re: ColdFusion for kids

2002-12-08 Thread Dick Applebaum
On Saturday, December 7, 2002, at 11:22 PM, Dave Watts wrote: P.S. There is a member of this list who was/is a teenage prodigy with CF (and quite a few other web technologies) -- Dave, if you see this, you could provide some real-life experience for input! I'm not sure whether you're

Re: ColdFusion for kids

2002-12-08 Thread Dick Applebaum
My personal wish is that children got more lessons in how to think than in what to think. In this case I think that programming may be a boon... Critical thinking is woefully misrepresented in American cirricula. Programming can encompass a good portion of those critical thinking skills

Re: CF4K was Re: Macromedia listening? is RE: ColdFusion for kids

2002-12-08 Thread Jochem van Dieten
Dick Applebaum wrote: Are you saying that while the CFMX approach is good enough for you and I to use,it is not good enough for our kids? I am saying that the HTML approach is a necessary evil nowadays. But we are supposed to be educating these kids for the future, so we might just as well

Re: Request for testing a possible bug

2002-12-08 Thread Jochem van Dieten
Jim Davis wrote: http://www.depressedpress.com/test/threadidbug/ Telnet shows the response to both is equal. I think you need to file a bug with Microsoft. Good luck. Jochem GET /test/threadidbug/WithoutThreadID.cfm HTTP/1.1 Host: www.depressedpress.com HTTP/1.1 302 Moved Temporarily

RE: CFSET in CFMX

2002-12-08 Thread paul smith
It's funny you should bring caching up, Dave. What do you make of this error message? Retrieval of cached query failed The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (74:1) to (74:175) in the template file

RE: Request for testing a possible bug

2002-12-08 Thread Jim Davis
-Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 6:34 AM To: CF-Talk Subject: Re: Request for testing a possible bug Jim Davis wrote: http://www.depressedpress.com/test/threadidbug/ Telnet shows the response to both is

Help with CFLOOP on a Form

2002-12-08 Thread Barbara Langston
I'm fairly new to Cold Fusion and have a question about using CFLoop and forms. I'm not sure how to build the code for the update. I have an approval form - where I'll list documents, and a manager will decide when a document is approved or ready to be deleted from the system. If a checkbox

RE: Help with CFLOOP on a Form

2002-12-08 Thread Sicular, Alexander
Lose the cfloop, cfoutput query = is the same thing. Lose the approve / delete checkbox. Only have one . if checked than yes(approved). Value of checkbox should be doc_id. Funny thing about a checkbox is that they will not cross over to the action page if they are not checked. Also like other

RE: Help with CFLOOP on a Form

2002-12-08 Thread Sicular, Alexander
cfloop list=form.docs_to_approve index=doc_id should be cfloop list=#form.docs_to_approve# index=doc_id -alex -Original Message- From: Sicular, Alexander Sent: Sunday, December 08, 2002 10:52 AM To: CF-Talk Subject:RE: Help with CFLOOP on a Form Lose the cfloop,

Default CF page loading error! HELP!

2002-12-08 Thread Josh Ford
This is a multi-part message in MIME format. --=_NextPart_000_0033_01C29E9D.43879BD0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi Guys,=20 Long time reader, first time poster. OK...I got a real good problem, = hopefully it's

Re: Default CF page loading error! HELP!

2002-12-08 Thread Jochem van Dieten
Josh Ford wrote: This is a multi-part message in MIME format. --=_NextPart_000_0033_01C29E9D.43879BD0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Please, plain text. ISSUE: since last week, we now have 3 sites that have index.cfm

Default CF page loading error! HELP!

2002-12-08 Thread Josh Ford
OK..here is a plain text re-send of my post. (Thanks Jochem). Sorry for the original HTML version, I susually use plain-text but changed it this week to show an example to a customer and forgot to set it back...doh! Anyways...onto the fun Hi Guys, Long time reader, first time poster.

RE: ColdFusion for kids

2002-12-08 Thread Stacy Young
although I was considered pretty competent with small arms in my late teens. I didn't come from a CS background, but learned programming the hard way, by trial-and-error Well Dave we've gpt two things in common. :-) -Stace -Original Message- From: Dave Watts [mailto:[EMAIL

Re: CF4K was Re: Macromedia listening? is RE: ColdFusion for kids

2002-12-08 Thread Dick Applebaum
On Sunday, December 8, 2002, at 03:33 AM, Jochem van Dieten wrote: Dick Applebaum wrote: Are you saying that while the CFMX approach is good enough for you and I to use,it is not good enough for our kids? I am saying that the HTML approach is a necessary evil nowadays. But we are supposed

RE: Pausing a script

2002-12-08 Thread Paul Kenney
Luis, This code will pause execution for 10 seconds: cfobject type=java name=obj class=java.lang.Thread action=create cfset obj.sleep(1) Paul Kenney [EMAIL PROTECTED] -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 9:58 AM To:

RE: Pausing a script

2002-12-08 Thread Matthew P. Smith
That will work, but will also cause 100% cpu utilization for the duration of the pause, IIRC. -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 4:38 PM To: CF-Talk Subject: RE: Pausing a script I found this code in Ben Forta's book. It seems

Help with CFLOOP on a Form

2002-12-08 Thread Barbara Langston
Thanks for the help. I was trying to avoid using a second form for the option to delete a record, but maybe that would be better than trying to combine it with the approval. ~| Archives:

Re: ColdFusion for kids

2002-12-08 Thread Jason Miller
Although I had chimed in teasing that I have a young daughter that may be a prodigy- I have to agree with this. It is dead on. Although it's nice to build any skill set in potential prodigy, just as you would push piano or violin on a brilliant talented musician, extra coloring for a kid with a

RE: Default CF page loading error! HELP!

2002-12-08 Thread Dave Watts
ISSUE: since last week, we now have 3 sites that have index.cfm for their default pages. It seems that after a reboot of the server, whichever site gets called on first, either IIS or the CF server is loading that index.cfm page correctly, but whenever any of the OTHER sites that use

Re: Default CF page loading error! HELP!

2002-12-08 Thread Josh Ford
That was it! Issue all fixed! MUCH thanks to Dave for saving my bacon! :o) - Josh Ford cfthankfulgroveling person=Dave Watts :o) - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, December 08, 2002 11:16 AM Subject: RE: Default CF

RE: retrieval of cached query failed (was: CFSET in CFMX)

2002-12-08 Thread Dave Watts
It's funny you should bring caching up, Dave. What do you make of this error message? Retrieval of cached query failed You might find this useful: http://www.macromedia.com/v1/handlers/index.cfm?ID=23008Method=FullPageCal l=/support/index.cfm On the other hand, I've encountered this a

RE: retrieval of cached query failed (was: CFSET in CFMX)

2002-12-08 Thread paul smith
Thanks, Dave. Now I understand what happened. Most likely, this happened while another (non-CF) application was running away and stealing all the CPU it could. best, paul At 02:27 PM 12/8/02 -0500, you wrote: It's funny you should bring caching up, Dave. What do you make of this error

enable clientmanagement creates strange form behavior in MX

2002-12-08 Thread E. Keith Dodd
Has anyone run into this in MX? If clientmanagement is set to yes in application.cfm, form field data is not *held*. (Submit partial form; instructed to go back and complete; go back and fields are empty--additional strange: try to go forward after back and says page has expired). Run same exact

Batch INSERT for Oracle?

2002-12-08 Thread Stacy Young
Anyone know if this is possible? I've got a query object in cf I'd like to dump to Oracle in one shot rather than looping over the items and performing individual inserts. Thanks! AVIS IMPORTANT: --- Les informations contenues dans le present document et ses pieces

CFC's and transactions

2002-12-08 Thread Ulf Unger
Hi, I have a problem using CFTRANSACTION and CFC's with my DBMS (MySQL): If I start a transaction and in this transaction I invoke a method which returns my next primary key ID (cause it is stored in another table, and I update the primary key table with an incremented value) and I have to do a

Re: CFC's and transactions

2002-12-08 Thread Marius Milosav
It's a known problem. cfunctions are not transaction aware, meaning the any query inside a cffunction will be automatically committed\rollback . I really hope that this issue will be fix in the next updater. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual

Re: enable clientmanagement creates strange form behavior in MX

2002-12-08 Thread Christian Cantrell
You are defiantly dealing with client-side caching issues. I don't know why you are seeing the behavior you are describing, but I do know that if you want to re-populate the form with partially filled-in data, you should explicitly re-populate the form by using client variables, session

Re: enable clientmanagement creates strange form behavior in MX

2002-12-08 Thread E. Keith Dodd
Thanks for the feedback. I had tested with Netscape but nothing on a Mac. I do see some header info differences when clientmanagement is on, in particular cfglobals in the ones where client management are on. Below is one taken from similar set up a few days ago.

ot: fireworks thumbnail generator

2002-12-08 Thread Tony Weeg
hi all. good sunday evening to y'all. does anyone know if/how fireworks can take a directory of images, create thumbnails and make some simple table with a set amount of columns per row, that would link to all of those images? i have 60 some images from my families thanksgiving day and i need to

RE: fireworks thumbnail generator

2002-12-08 Thread Mark A. Kruger - CFG
Tony, This can be done in Dreamweaver (using Fireworks for the graphics I think) - One of our design pros does this frequently for product pages. Hang on and I'll try to get you specific instructions. -Mark -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday,

RE: fireworks thumbnail generator

2002-12-08 Thread Mark A. Kruger - CFG
Tony, Go to commands--create web photo albumn in dreamweaver. Follow the wizard Dorothy g. -Mark -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 8:49 PM To: CF-Talk Subject: ot: fireworks thumbnail generator hi all. good sunday evening

RE: fireworks thumbnail generator

2002-12-08 Thread Tony Weeg
gratzie! tw -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 10:02 PM To: CF-Talk Subject: RE: fireworks thumbnail generator Tony, Go to commands--create web photo albumn in dreamweaver. Follow the wizard Dorothy g. -Mark

RE: fireworks thumbnail generator

2002-12-08 Thread Tony Weeg
worked like a charm ;) again, thank you mark. thats perfect! tony -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 10:02 PM To: CF-Talk Subject: RE: fireworks thumbnail generator Tony, Go to commands--create web photo albumn in

RE: Batch INSERT for Oracle?

2002-12-08 Thread Joe Eugene
Is your query object from the same DataSource(Oracle)? If so.. why cant you just do... insert into TableName(field1, fields2) select field1,field2 from Tablename.. If its a different datasource.. u dont have an option.. Joe -Original Message- From: Stacy Young [mailto:[EMAIL

RE: fireworks thumbnail generator

2002-12-08 Thread Mike Chambers
fyi, there is a updated version of this extension at the Macromedia Exchange: http://www.macromedia.com/exchange/dreamweaver/ it offers a lot more customization. if you can't find it, shoot me an email and ill find the exact link for you. mike chambers [EMAIL PROTECTED] -Original

How to use DLLs in CF

2002-12-08 Thread Amalan
Hi anyone and everyone, I have a query which I hope someone can help. Can you please help tell me how to invoke DLL calls in CF? What is the syntax? How to pass parameters? thansk best Regards, Amalan ~| Archives:

RE: fireworks thumbnail generator

2002-12-08 Thread Mark A. Kruger - CFG
No problem.. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 9:10 PM To: CF-Talk Subject: RE: fireworks thumbnail generator worked like a charm ;) again, thank you mark. thats perfect! tony -Original Message- From: Mark A. Kruger -

RE: fireworks thumbnail generator

2002-12-08 Thread Mark A. Kruger - CFG
Cool... thanks mike. -Original Message- From: Mike Chambers [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 9:40 PM To: CF-Talk Subject: RE: fireworks thumbnail generator fyi, there is a updated version of this extension at the Macromedia Exchange:

RE: Batch INSERT for Oracle?

2002-12-08 Thread Stacy Young
Different datasources :( Thx tho -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 10:35 PM To: CF-Talk Subject: RE: Batch INSERT for Oracle? Is your query object from the same DataSource(Oracle)? If so.. why cant you just do... insert into

Re: How to use DLLs in CF

2002-12-08 Thread S . Isaac Dealey
Hi anyone and everyone, I have a query which I hope someone can help. Can you please help tell me how to invoke DLL calls in CF? What is the syntax? How to pass parameters? thansk best Regards, Amalan You have to register the DLL as a cfx custom tag in the ColdFusion Adminsitrator. In

RE: How to use DLLs in CF

2002-12-08 Thread Jim Davis
You have to register the DLL as a cfx custom tag in the ColdFusion Adminsitrator. In CF 5 it's in the left-side menu under Server Extensions CFX Tags Then press the button labelled register c++ cfx, provide a name for the tag in the form on the following page, enter the path to

RE: Batch INSERT for Oracle?

2002-12-08 Thread Joe Eugene
Stacy, I think your best bet is to write a simple Java App to dump the data. You can use Prepared Statements(efficient) which works almost like SP's(creating execution structures). I tried to use CFMX to do this.. and brought CFMX down a few times.. NOT advisable. Joe -Original

RE: How to use DLLs in CF

2002-12-08 Thread S . Isaac Dealey
You have to register the DLL as a cfx custom tag in the ColdFusion Adminsitrator. In CF 5 it's in the left-side menu under Server Extensions CFX Tags Then press the button labelled register c++ cfx, provide a name for the tag in the form on the following page, enter the path to the

Re: CFC's and transactions

2002-12-08 Thread Sean A Corfield
On Sunday, Dec 8, 2002, at 15:20 US/Pacific, Marius Milosav wrote: It's a known problem. cfunctions are not transaction aware, meaning the any query inside a cffunction will be automatically committed\rollback . That's not quite true. If you have a cftransaction with a single function call,