concatenate help please

2004-09-09 Thread Brant Winter
Can somebody please some help ?? cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script #scriptNO# = StructNew() What am I doing wrong ?? I am trying to make this string look like cfset scriptrun.script1=StructNew()

Re: concatenate help please

2004-09-09 Thread Kym Kovan
Hi Brant, cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script #scriptNO# = StructNew() What am I doing wrong ?? I am trying to make this string look like cfset scriptrun.script1=StructNew() try this: cfset scriptrun.script#scriptNO# = StructNew() that will work on any

Re: concatenate help please

2004-09-09 Thread joe velez
try doing what you're doing .. but save it to a file ... then include the file. cfset writetofile= YOUR CODE HERE... But instead of: cfset scriptrun.script #scriptNO# = StructNew() put it how you want it to work like: cfset scriptrun.script#scriptNO# = StructNew() cffile action=''

RE: concatenate help please

2004-09-09 Thread Paul Vernon
try this cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script#scriptNO# = StructNew() Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: concatenate help please

2004-09-09 Thread Brant Winter
Works great thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]