RE: accessing form fields with a variable numeric component

2001-11-08 Thread Michael Miller
Thanks much Justin, I had gone to the underscore precisely on that premise but hadn't made the first component a string when I tried the evaluate yesterday... this should get me there Michael -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 08, 200

Re: Entire Dynamic sites in Flash

2001-11-08 Thread lsellers
At 01:55 PM 11/8/2001 -0800, you wrote: >On-topic relevance: Full computers with HTML renderers are one possible >renderer for ColdFusion developers, but the action is increasing towards >both high levels of complementary clientside interactivity, and portability >and access away from the desktop.

Re: cold fusion 5 and Linux

2001-11-08 Thread Willim J Wheatley
Its perfect and i would say better then an NT platform in some ways, though you cant use Alot of CFX tags becuase people make them for Win platform instead of C :) But other then that its wonderful! Bill Wheatley Director of Development Macromedia Certified Advanced ColdFusion 5 Developer AEPS

Re: cold fusion 5 and Linux

2001-11-08 Thread Gonzo Rock
So far it's been pretty painless Go for it! At 07:58 PM 11/8/01 -0800, you wrote: >Are any of you using Cold Fusion 5 Server on a Linux OS with Apache 1.3. > If so how do you like the combo and would you recommend that a newbie >run Cold Fusion Server on this combo. Anybody's feedback w

cold fusion 5 and Linux

2001-11-08 Thread Victor and Colleen Maalouf
Are any of you using Cold Fusion 5 Server on a Linux OS with Apache 1.3. If so how do you like the combo and would you recommend that a newbie run Cold Fusion Server on this combo. Anybody's feedback will be appreciated. Maalouf ~~ Get the mai

Re: accessing form fields with a variable numeric component

2001-11-08 Thread Justin Scott
> > Creating dynamic variables means... > > Insert into issue_values(issue_name,system_key,quantity,cost) > > VALUES('#form.issue_name#',#keyArray[counter]#,#form.quantity,keyArray[count > er]# ,#form.cost,#keyArray[counter]# ) > ..you need to evaluate() them in the processing code... Ins

Re: IMAP and CF

2001-11-08 Thread Justin Scott
> Anyone know if CF and IMAP servers can interact? > I am tyring to access my email and allow others to access their email > via CF, but I am not sure if IMAP can be used.. I know POP is > supported..anyone know about IMAP? See: http://advancedwebmail.com/ They have a whole web-based IMAP packag

CFPOP and attachments

2001-11-08 Thread Bruce Holm
I'm trying to work with CFPOP and get attachments to be written to a temp space on a Unix (Sun) workstation. The examples I've seen for ATTACHMENTPATH all use something like "C:\TEMP". I have tried "/tmp" and nothing is written for a file I specify GETALL (action). Both attributes ATTACHMENTS

accessing form fields with a variable numeric component

2001-11-08 Thread Michael Miller
Hi CF listers, I have an application that needs to use a variable to identify a form field with two components. While the form build correctly and functions as it should, I am encountering a problem when I try to save the changes made to the form to the Oracle 8 database. The form fields which are

Re: Session variables

2001-11-08 Thread Kinley Pon
thanks Jeffry - Kinley >From: Jeffry Houser <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: Session variables >Date: Thu, 08 Nov 2001 09:59:54 -0800 > > That is confusing. I think perhaps even a bit misleading. > > My understanding is that ses

RE: Session variables

2001-11-08 Thread Kinley Pon
thanks Pete - Kinley >From: "Pete Freitag" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: Session variables >Date: Thu, 8 Nov 2001 05:09:57 -0500 > >Session variables are not "supposed" to be shared between clients. > >But they can be, if someone

Re: regular expression help!

2001-11-08 Thread Stuart Duncan
Try using )[[:print:]]*()","","all")> That should find anything with a beginning of and an ending of and strip them out and any printable character in between with an empty string. I'm not sitting at a coldfusion enabled server, so I can't verify, but it should be that, or very close to it.

cf-talk@houseoffusion.com

2001-11-08 Thread Kinley Pon
Strange... I am following an example for using the tag: this script is in my app_globals.cfm request_err.cfm --- We're sorry -- An Error Occurred Your Location: #Error.RemoteAddress# Your Browser: #Error.Browser# Da

Re: Session variables

2001-11-08 Thread Kinley Pon
thanks gyrus - Kinley >From: "gyrus" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: Session variables >Date: Thu, 8 Nov 2001 16:02:43 - > > > You can actively make CFAS give each request a single threaded session - > > effectively managing the

RE: Session variables

2001-11-08 Thread Kinley Pon
thanks Neil - Kinley >From: "Neil Clark" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: Session variables >Date: Thu, 8 Nov 2001 15:07:12 - > >You can actively make CFAS give each request a single threaded session - >effectively managing the l

Re: regular expression help!

2001-11-08 Thread Brook Davies
You could just find the first head, store the position, find the next head, store the position, and then just use mid(string,pos+6,pos-1) to strip the middle out maybe there is a more efficient way Brook At 11:32 PM 08/11/01 +, you wrote: >The code I'm doing now is actually in J