RE: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-20 Thread Charlie Arehart
, our sister organization. :-)   /charlie http://www.carehart.org/blog/   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Leif WellsSent: Friday, October 20, 2006 3:04 PMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] Reading the results of a cfselect form element Thank

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-20 Thread Leif Wells
Thanks for everyone's answers.I blogged my experiences here:http://www.leifwells.com/index.cfm/2006/10/20/Fun-with-Coldfusion-BlogCFC-Ant-and-ACFUG If you have any suggestions about my setup, feel free to let me know.Leif - To unsubscri

RE: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Charlie Arehart
Just to clarify, that's a CF7-only feature.   /charlie http://www.carehart.org/blog/   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew PowellSent: Thursday, October 19, 2006 6:04 PMTo: discussion@acfug.orgSubject: Re: [ACFUG Discuss] Reading the results of a cfs

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Andrew Powell
If you want to see if it's a string you can use:isValid("string",varToTest)On Oct 19, 2006, at 5:51 PM, Charlie Arehart wrote: Hi Leif. For those who don't recognize the name, Leif is the manager of the Atlanta Adobe User Group.   Leif, for your need, you say that what comes in is 2 UUIDs separate

RE: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Charlie Arehart
Hi Leif. For those who don't recognize the name, Leif is the manager of the Atlanta Adobe User Group.   Leif, for your need, you say that what comes in is 2 UUIDs separated by a comma. That's called a "list" in CFML. Now, you say you want to test if it's a string. Do you mean you want to test

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Teddy Payne
To really detect for existance of a string you may want to additionally peformThis will ensure that the variable is a string, number or a boolean and that the value of the variable is not empty. TeddyOn 10/19/06, Douglas Knudsen <[EMAIL PROTECTED]> wrote: everything in CF is a string!  :)1) see abo

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Teddy Payne
If it is a comma delimeted list then:Question 1: How would test to see if this actually is a String? ListLen(variableName) gt 0Question 2: How do I convert this String to an Array? Or is there a better way to process a cfselect element? ListToArray(variableName)TeddyOn 10/19/06, Leif Wells <[EMAIL

Re: [ACFUG Discuss] Reading the results of a cfselect form element

2006-10-19 Thread Douglas Knudsen
everything in CF is a string!  :)1) see above. ;)  Really, I don't know how, there is no isString().  2) checkout listToArray().  http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=part_cfm.htmIts been sometime since I d