RE: Dynamic variable construction and it's use

2001-01-25 Thread Tim Fields
ECTED]] Sent: Thursday, January 25, 2001 8:32 AM To: CF-Talk Subject: RE: Dynamic variable construction and it's use Actually if you look at the set statement he does need the #'s. He wouldn't need them if it was contstructed like this. The way that he has it written, with the

Re: Dynamic variable construction and it's use

2001-01-25 Thread Todd Ashworth
Make that Evaluate(#countvar#) :) Todd Ashworth - Original Message - From: "PEREZ, RICHARD RINGO (SBCSI)" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 3:59 PM Subject: RE: Dynamic variable construction an

RE: Dynamic variable construction and it's use - summary

2001-01-25 Thread Kevin Gilchrist
al Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 2:18 PM To: CF-Talk Subject: RE: Dynamic variable construction and it's use #Evaluate(session.application_view_list[i].name & "_red")# would ouptut the value. So would #evaluate(countvar)

RE: Dynamic variable construction and it's use

2001-01-25 Thread Katrina Chapman
se evaluate(). #Evaluate(countvar)# --K -Original Message- From: Tim Fields [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 11:15 PM To: CF-Talk Subject: RE: Dynamic variable construction and it's use You don't use the # signs within the cfset tag. Aside fro

Re: Dynamic variable construction and it's use

2001-01-25 Thread Fred T. Sanders
nt: Thursday, January 25, 2001 6:14 PM Subject: RE: Dynamic variable construction and it's use > You don't use the # signs within the cfset tag. Aside from that though, yes, > you do just say #countvar# . In your set statement you > assigned the return value of

RE: Dynamic variable construction and it's use

2001-01-25 Thread PEREZ, RICHARD RINGO (SBCSI)
Kevin, Put it inside the function Evaluate(#oracledb_red#). -Original Message- From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 10:42 AM To: CF-Talk Subject: Dynamic variable construction and it's use Hi there, If construct a variable name dynami

RE: Dynamic variable construction and it's use

2001-01-25 Thread Phoeun Pha
bject: Dynamic variable construction and it's use Hi there, If construct a variable name dynamically like; How do I then output the contents of the newly constructed variable? If the code above evaluated to a variable name e.g. "oracledb_red", how would I do the equivalent of

RE: Dynamic variable construction and it's use

2001-01-25 Thread Russel Madere
> -Original Message- > From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 25, 2001 12:42 > To: CF-Talk > Subject: Dynamic variable construction and it's use > > > Hi there, > > If construct a variable name dynamically like

RE: Dynamic variable construction and it's use

2001-01-25 Thread Maia, Eric
Evaluate("#countvar#") -Original Message- From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 10:42 AM To: CF-Talk Subject: Dynamic variable construction and it's use Hi there, If construct a variable name dynamically like; How do I

Re: Dynamic variable construction and it's use

2001-01-25 Thread Jon Hall
#evaluate(countvar)# jon - Original Message - From: "Kevin Gilchrist" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 1:41 PM Subject: Dynamic variable construction and it's use > Hi there, > >

RE: Dynamic variable construction and it's use

2001-01-25 Thread Kibbey, Bruce A (Integic)
lto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 1:42 PM To: CF-Talk Subject: Dynamic variable construction and it's use Hi there, If construct a variable name dynamically like; How do I then output the contents of the newly constructed variable? If the code above evaluated to

RE: Dynamic variable construction and it's use

2001-01-25 Thread Rick Lamb
#Evaluate(session.application_view_list[i].name & "_red")# would ouptut the value. So would #evaluate(countvar)# Rick -Original Message- From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 12:42 PM To: CF-Talk Subject: Dynamic variable co

RE: Dynamic variable construction and it's use

2001-01-25 Thread Tim Fields
Sent: Thursday, January 25, 2001 10:42 AM To: CF-Talk Subject: Dynamic variable construction and it's use Hi there, If construct a variable name dynamically like; How do I then output the contents of the newly constructed variable? If the code above evaluated to a variable name e.g. &qu

Re: Dynamic variable construction and it's use

2001-01-25 Thread Kevin Schmidt
#evaluate(countvar)# - Original Message - From: "Kevin Gilchrist" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 12:41 PM Subject: Dynamic variable construction and it's use > Hi there, > >

Dynamic variable construction and it's use

2001-01-25 Thread Kevin Gilchrist
Hi there, If construct a variable name dynamically like; How do I then output the contents of the newly constructed variable? If the code above evaluated to a variable name e.g. "oracledb_red", how would I do the equivalent of #oracledb_red# Doing #countvar# will obvio