I'm not sure if they do or not but I finally got it by using this...
I was formatting it using my SQL so at the end of the row I'd add a line break..
|| chr(10), anyways I removed that and changed the addnewline argument
back to yes.
It outputs correctly.. only took me the entire day to fix this.. heh

<cffile action="WRITE" file="#g_EcountFileDirectory#\#eCountFilename#"
output="#ecount_file_header#" addnewline="Yes">
<cffile action="APPEND"
file="#g_EcountFileDirectory#\#eCountFilename#"
output="#ecount_batch_header#" addnewline="Yes">
<cfloop query="fetchReferrals">
        <cffile action="APPEND"
file="#g_EcountFileDirectory#\#eCountFilename#" output="#record_data#"
addnewline="Yes">
</cfloop>
<cffile action="APPEND"
file="#g_EcountFileDirectory#\#eCountFilename#"
output="#ecount_batch_footer#" addnewline="Yes">
<cffile action="APPEND"
file="#g_EcountFileDirectory#\#eCountFilename#"
output="#ecount_file_footer#" addnewline="Yes">



On Mon, 22 Nov 2004 15:09:37 -0800, Ian Skinner
<[EMAIL PROTECTED]> wrote:
> Can you provide an example of a couple of lines of the output?  You might try 
> not providing any line breaks in your output to the append line.  I have a 
> vague memory that each append call creates it's own line break.
> 
> --------------
> 
> 
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
> 
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
> 
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185090
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to