Re: Writing to text file

2001-12-11 Thread Bill King
I thought CFFILE had an "APPEND" type. - BILL - - Original Message - From: "BILLY CRAVENS" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 11, 2001 12:50 PM Subject: Re: Writing to text file > add a line break u

RE: Writing to text file

2001-12-11 Thread Rick Osborne [Mojo]
Dave recommended using a single variable: : : : : : : Actually, you could take this one step further and make it pretty transparent: #fname#,#lname# Then, your CF_SaveFileContent tag is really simple: You can do pretty much *anything* you want in that first set of tags. Ou

Re: Writing to text file

2001-12-11 Thread BILLY CRAVENS
- From: "Mookie Bear" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 11, 2001 2:36 PM Subject: RE: Writing to text file > why can't I do this? i mean, I need to do this!! because i have to put > over 3,000 names How

RE: Writing to text file

2001-12-11 Thread Dave Watts
> why can't I do this? i mean, I need to do this!! > because i have to put over 3,000 names How can I > loop over a "write" CFFILE tag? because it would keep > making new files. why can't i put it all in one single > thing? I was also thinking putting all that info in one > variable

RE: Writing to text file

2001-12-11 Thread Shawn Grover
You would handle the line break like this: Hope that helps. Shawn Grover -Original Message- From: Mookie Bear [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 11, 2001 1:37 PM To: CF-Talk Subject: RE: Writing to text file why can't I do this? i mean, I need

RE: Writing to text file

2001-12-11 Thread Mark Stewart
This is how I did it: /*** The spaces in the next line of code are not spaces, they're tabs ***/ /*** Again, not spaces, but tabs ***/ Hope that helps. Mark -Original Message- From: Mookie Bear [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Dece

RE: Writing to text file

2001-12-11 Thread Mookie Bear
in one variable, but how do I specify a line break in that variable? that line break is important, because Access reads it as a new row. grr!!! output="#fname#,#lname# " >From: "Adkins, Randy" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF

RE: Writing to text file

2001-12-11 Thread Adkins, Randy
If you need to nest the output of a query within the CFOUTPUT tags, simply use the CFLOOP function. -Original Message- From: Mookie Bear [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 11, 2001 3:27 PM To: CF-Talk Subject: Writing to text file hey guys, I am doing a CFFILE and writi