Re: UDF best practices

2001-08-09 Thread Bryan LaPlante
I am getting pretty good results with saving my udf's in the session scope. see the tutorial at http://www.kcfusion.org/Presentations/cflp.zip Bryan - Original Message - From: Correa, Orlando (ITSC) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 9:02 PM

Re: Pro Bono Forms - URL

2001-08-09 Thread Toby Tremayne
Darien, I'm a little behind on the lists I'm afraid - you still need the help? I'm between contracts at the moment, so if you do, please give me a yell and I'll knock up the forms you need. regards, Toby At 11:21 AM 8/8/2001, you wrote: This in in regards to the Pro Bono form help

Re: getting values out of numbered form fields

2001-08-09 Thread Tim Painter
Look at the Evaluate function -- e.g cfset strSQL = strSQL ID = Evaluate(PrintID#pos#) or - Original Message - From: Michael Wolter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 08, 2001 4:04 PM Subject: getting values out of numbered form fields I

Re: CFsetting through a loop - brainfart

2001-08-09 Thread Tim Painter
Could you use a cfparam to default a value, just in case the user did not answer the question? e.g cfparam name=level#i# value= Then CF will have a value if it is not defined.. Tim P. - Original Message - From: Erika Foster [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Oracle Stored Procedures

2001-08-09 Thread Clint Tredway
Can anyone help me with the syntax of executing a stored procedure in Oracle? I have one input parameter(grpid) and one output parameter(tpcid) and they are both numeric. Here is what I am trying: cfstoredproc procedure=slct_topic_tpcid datasource=#appDSN#

RE: Oracle Stored Procedures

2001-08-09 Thread Alex Skinner
I dont believe you can use output parameters with Oracle I may be wrong? Alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Clint Tredway Sent: 09 August 2001 13:32 To: CF-Talk Subject: Oracle Stored Procedures Can anyone help me with the syntax of

Re: CFsetting through a loop - brainfart

2001-08-09 Thread Greg
Or use a CFINPUT on the form and make it a required field. Greg - Original Message - From: Tim Painter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 6:15 AM Subject: Re: CFsetting through a loop - brainfart Could you use a cfparam to default a value,

RE: Oracle Stored Procedures

2001-08-09 Thread Clint Tredway
There is another stored procedure that is returning a one record result set... I am trying to get a procedure to return more than one record.. -- Original Message -- from: Alex Skinner [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Thu, 09 Aug 2001

CF and Verity Information Server

2001-08-09 Thread Jason Blum
Anyone have any experience using a Verity server EXTERNAL to the CF Server? Running the Verity included with CF5 is hitting the server's performance too much so we set up a second server running Verity Information Server 3.7. But I haven't the foggiest idea where to begin telling CF5 to use

Lost CF Administrator Password

2001-08-09 Thread Dave Hannum
A few days ago, there were posts telling how to go into the registry and reset the CF Administrator password. I can't find it in the archives. Can someone tell me were in the registry to reset the Adminstrator password? CF 5 on Win2K. Our system administrator installed CF 5 a few days ago,

RE: Oracle Stored Procedures

2001-08-09 Thread Terri Stocke
Here's an example of a call I use to an Oracle stored procedure (creates a session id). This particular example uses strings instead of numeric, but you get the idea. This is just to give you the correct syntax. Instead of using cfprocresult, you have to use cfprocparam type=out for Oracle.

Fw: Lost CF Administrator Password

2001-08-09 Thread Dave Hannum
Ahh - I just found it in the archives after all. http://www.mail-archive.com/cf-talk@houseoffusion.com/msg05663.html Thanks, Dave - Original Message - From: Dave Hannum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 8:55 AM Subject: Lost CF

Re: FuseBox

2001-08-09 Thread BEN MORRIS
I am almost done coding a site (more or less) using Fusebox. My $.02: The Good: - The naming conventions are good to use; it is good to have each app in its own folder. - You should always focus on code reuse, and FB helps. The Bad: - For small teams (I work alone), strictly following the

RE: Oracle Stored Procedures

2001-08-09 Thread Clint Tredway
Well, I just had my question answered. Oracle stored procedures do not return result sets. So, to get multiple records out of Oracle stored procs, you have to have the stored proc return an array of records and then have CF parse the array. Thanks to those who helped! Clint --

Re: getting values out of numbered form fields

2001-08-09 Thread Michael Wolter
Evaluate() worked like a charm. Tim Painter -- you are a gentleman and a scholar. By the way, I was wrong when I said that the isdefined part was working, but I was able to get the code working like so: cfset tmpstr = chkPrint1 cfloop condition=isdefined(#tmpstr#) cfset strSQL = strSQL

RE: Oracle Stored Procedures

2001-08-09 Thread mherbene
From the CF 4.51 release notes: Oracle Reference Cursor Support This release supports the return of result sets via Oracle Reference Cursors through the Oracle 8 native driver and the ColdFusion stored procedure interface. The example below shows both the PL/SQL necessary for creating a

Re: Oracle Stored Procedures

2001-08-09 Thread Don Vawter
You can return result sets from Oracle. You have to have a procparam of type CF_SQL_REFCURSOR and type OUT It has been a while since I have used Oracle and I can't remember whether you also have to include cfprocresult or not Hopefully someone who has used it more recently can give you the

counting form fields

2001-08-09 Thread Michael Wolter
Is there any way to get a count of the number of fields that are returned from a form? Also, is there a way to get a count of the number of records selected by a cfquery? The only way I have found to do that is to do a second cfquery and use the count(*) function, but that seems to be double

RE: Oracle Stored Procedures

2001-08-09 Thread Clint Tredway
My company is still using CF 4.01. So unfortunately this will not help me at the moment. Thanks for the info! -- Original Message -- from: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Thu, 09 Aug 2001 09:23:08 -0400 From the CF 4.51 release

Re: FuseBox

2001-08-09 Thread corrigan
I agree 100%. FuseBox is a great tool and allows you to deploy new sites rapidly, but not such a great idea to do starting out with a big project. Tool around with it first, learn the ins-and-outs and then begin to apply it to bigger apps. It is easy to use, but also easy to screw it up if you

RE: counting form fields

2001-08-09 Thread A . Little
Not sure about counting the number of fields returned by a form, but... you can use: MyQueryName.RecordCount to show the number of results returned by a CF query. Alex -Original Message- From: Michael Wolter [SMTP:[EMAIL PROTECTED]] Sent: 09 August 2001 14:34 To: CF-Talk

CFMail output formatting

2001-08-09 Thread Mark Leder
In the printed output which gets sent to someone (not using HTML formatting), how do you force carriage-returns? For example, var1 and var2 want to run together, without being separated by a space: #var1# #var2# /cfmail Thanks, Mark ~~

RE: counting form fields

2001-08-09 Thread Alex Skinner
for the number of form fields ListLen(Form.formfields) for the query just put queryname.recordcount Hope this helps Alex# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Michael Wolter Sent: 09 August 2001 14:34 To: CF-Talk Subject: counting form

RE: Oracle Stored Procedures

2001-08-09 Thread Lonny Eckert
I've got a whopping 10 mos. of experience in the field so don't beat on me too harshly if I'm interpreting your question improperly. CF can handle a cursor set from Oracle. If this is not what you meant by result set, then what is the difference between a result set and a cursor set? I've

RE: Zachary Bedell

2001-08-09 Thread Yager, Brian T Contractor/NCCIM
Come on guy...I know you have a brain. HE is not spamming you. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 5:25 PM To: CF-Talk Subject: Zachary Bedell Is anyone else out there getting spammed by this guy or am I the only one? If

RE: (Admin) Duplicates

2001-08-09 Thread Yager, Brian T Contractor/NCCIM
Did you notice that his name was surrounded by tick marks? His is the only one I can see that has that...Could that have contributed? Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message- From: [EMAIL

Re: counting form fields

2001-08-09 Thread Dave Hannum
This will count the fields, list the fields and tell you the value of the fields. CFSET Count = 0 CFLOOP INDEX=i LIST=#FORM.FieldNames# CFSET Count = Count + 1 CFOUTPUT#i# - #Evaluate(i)#/CFOUTPUTP /CFLOOP CFOUTPUT#Count#/CFCOUNT Dave - Original Message - From: Michael Wolter

cf4 cf5 verity

2001-08-09 Thread Rich Wild
As we all know, there is a problem with CF4.5's verity engine and Adobe PDFs created in version 4 and later of Adobe Acrobat - they don't index. Having read around it seems that MM (then Allaire) didn't want to fix it for 4.5 and instead would put the fixed verity implementation into CF5. OK,

RE: counting form fields

2001-08-09 Thread Martin Laine
For the number of form fields use this instead: ListLen( FORM.FieldNames ) Remember that when you use an image form input to submit the form two extra fields will be sent (x and y coordinates of the mouse click). Also, unticked checkboxes will not be counted in and fields with the same name

Re: counting form fields

2001-08-09 Thread Mike Morris
Hi Michael, On the action page you can use the ListLen function and form.formfields [EMAIL PROTECTED] 08/09/01 09:33AM Is there any way to get a count of the number of fields that are returned from a form? Also, is there a way to get a count of the number of records selected by a cfquery?

POP/IP

2001-08-09 Thread DAVID DIXON
Dear All Is there any way, using CF or not, of converting a POP address (e.g. pop.mail.yahoo.com) into their IP equivalents. I know you can use JavaScript with Netscape to recall IP addresses, but I need a solution which will work with IE5+. Any help much appreciated

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: I don't understand session locking :(

2001-08-09 Thread Dennis Powers
Maybe I am being a curmudgeon today, but it seems to me that if you ALWAYS need to lock session and application variables and would never want to use them without locks then Allaire should have coded that function into it's core design. Dennis Powers UXB Internet (203)879-2844

RE: counting form fields

2001-08-09 Thread Tyson
I'll add one more solution to this. The form scope in ColdFusion is actually treated as a structure. This means you can also find the number of form fields by doing something like this: #structCount(form)# Realize, however, that this count will include the actual form.fieldnames variable

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 14:49 To: CF-Talk Subject: RE: Zachary Bedell Come on guy...I know you have a brain. HE is not

relational select box

2001-08-09 Thread Emmet McGovern
Can anyone give me a tip on how to have the contents of one select box update the contents of another from a relational DB? Emmet McGovern p.s. Good lord its HOT! ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: I don't understand session locking :(

2001-08-09 Thread Matthew W Jones
had they done that, it likely would have placed a lock around each individual use. which would have been hard on performance. as they left it, you control what to lock, which allows you to place a single lock around a block of code. -Original Message- From: Dennis Powers [mailto:[EMAIL

RE: CFsetting through a loop - brainfart

2001-08-09 Thread Tyson
Erika, You're getting this error because of how HTML forms work. When a user makes no selection for a given bank of radio buttons, checkboxes, or a select box, the actualy variable for that form widget does not get passed to the processing page. In order to get around your error, it would be

Re: Oracle Stored Procedures

2001-08-09 Thread freddy
Here is what I use to access an oracle sp: cfstoredproc datasource=#sid# procedure=package.proc returncode=no cfprocparam type=InOut cfsqltype=CF_SQL_VARCHAR variable=in_key value=#key# cfprocparam dbvarname=out_rec_csr variable=rec_cur

RE: counting form fields

2001-08-09 Thread Adam Reynolds
You do realise that the form scope can be treated as an array. -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: 09 August 2001 14:39 To: CF-Talk Subject:RE: counting form fields Not sure about counting the number of fields returned by a form,

RE: getting values out of numbered form fields

2001-08-09 Thread Tyson
Michael, There might be a better way to do this. The code you have right now is creating a uniquely named checkbox for each record found by the search. You might find your solution easier if you switched this and just did something like this on your search results page: !--- find records based

RE: Zachary Bedell

2001-08-09 Thread Neil Clark
oh dear that was bad. :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: Zip Codes

2001-08-09 Thread Edward Smith
Well, we've used it :) I just cut it out of a page, so it may need tweaking. I don't know of any other way to do it other then calculate against each lat/long other then precalculating some sort of matrix to try to weed out rows that you KNOW are not in the radius. It is spankin fast with US 5

RE: Zachary Bedell

2001-08-09 Thread Will Swain
Oh...the irony ;) -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: 09 August 2001 15:22 To: CF-Talk Subject: RE: Zachary Bedell Hey Bruce I got your message 3 times. are you spamming me? :-) Will -Original Message- From: Yager, Brian T

Dynamic array names

2001-08-09 Thread Cold Fusion
hi folks.. I'm having a real headache trying to set some values in an array. The problem revolves around the fact that the array name is dynamic. I've been trying to use ArraySet but its just crazy, it simply doesn't set the values. cfset ArraySet(evaluate(arrayname),1,10,bob) doesn't error,

Re: Zachary Bedell

2001-08-09 Thread coldfusiongirl
now you are spamming me! :) CF girl - Original Message - From: Will Swain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 10:22 AM Subject: RE: Zachary Bedell Hey Bruce I got your message 3 times. are you spamming me? :-) Will

Re: Zachary Bedell

2001-08-09 Thread John Paitel
Well, since the admin already wrote a notice about it, I think they know. Also, I've received your post five times. When do YOU become spam? John At 07:29 PM 8/8/01 -0400, you wrote: Is anyone else out there getting spammed by this guy or am I the only one? If others are, is there not a way

Locking session scope on existence checks

2001-08-09 Thread Ryan Emerle
Do ya need to lock the session scope if you're just checking if a session var exists? Im well versed in why/how to lock for read and write, so no explanations will be needed in that area :) -Ryan ~~ Structure your ColdFusion code with Fusebox.

RE: I don't understand session locking :(

2001-08-09 Thread Dave Watts
Maybe I am being a curmudgeon today, but it seems to me that if you ALWAYS need to lock session and application variables and would never want to use them without locks then Allaire should have coded that function into it's core design. Maybe so. I can't speak to that, since I don't know

RE: I don't understand session locking :(

2001-08-09 Thread Mike Brunt
You make a very good point. My field experience on many different sites is deal with locking in the development/qa phase. Watch the Application and Server logs religiously and lock code as identified in these logs. Also watch the Application and Server logs on the live servers and lock code as

RE: Zachary Bedell

2001-08-09 Thread Ann Harrell
LOL! It doesn't pay to be a smart @ss does it G Ann -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 9:22 AM To: CF-Talk Subject: RE: Zachary Bedell Hey Bruce I got your message 3 times. are you spamming me? :-) Will

Re: Yipes - its raining ColdFusion 5 books

2001-08-09 Thread Matt Brown
Pete Ruckelshaus wrote: Wow, that's sure not a sign that Cold Fusion is dying :-) CF is not going away. :-) There might be more CF books pound for pound than the total weight of Minnesota. There is a lot of momentum. ~~ Structure your

RE: Zachary Bedell

2001-08-09 Thread Costas Piliotis
He man. Sending an email that 21 times is a bit unnecessary. You're no better than Bruce... -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 09, 2001 7:22 AM To: CF-Talk Subject: RE: Zachary Bedell Hey Bruce I got your message 3 times.

RE: Zachary Bedell

2001-08-09 Thread Tangorre, Mike
I would like to invoke the noMoreEmail function 'noMoreEmail()' and pass it the name of the person that this email keeps comging from. :-) I got it a bazillion times. hehehe Michael T. Tangorre Web Applications Developer Office Phone: 703-558-4746

CF Scheduler problem

2001-08-09 Thread Braver, Ben
Hi all, CF 4.5.1 SP2 Win 2K Server Local intranet I put a task in the Scheduler via the Admin page. (It uses cf_mail to send a test alpha pager message to a small group, with a corresponding confirm message to their mailbox.) Start date, no End date. Recurring daily at 11:00:00 Operation:

RE: Ben Forta and CF5 -- Coming to a CFUG Near You

2001-08-09 Thread Costas Piliotis
Now that's a road trip I'd be willing to make... Vancouver - Anchorage =) -Original Message- From: Wayne Annis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 8:40 PM To: CF-Talk Subject: RE: Ben Forta and CF5 -- Coming to a CFUG Near You Yes, I live in Alaska and it

  1   2   >