I know we have gone over this a million times.

2000-10-18 Thread Nick Call

I am populating a list that will eventually be written to a text file.  I
want to put a carriage return after each entry.  I cannot remember the
syntax.  Can someone kindly email that to me.

Thanks in advance.

Nick



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: I know we have gone over this a million times.

2000-10-18 Thread Simon Horwith

Replace "," with Chr(13)

~Simon

-Original Message-
From: Nick Call [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 18, 2000 12:44 PM
To: CF-Talk
Subject: I know we have gone over this a million times.


I am populating a list that will eventually be written to a text file.  I
want to put a carriage return after each entry.  I cannot remember the
syntax.  Can someone kindly email that to me.

Thanks in advance.

Nick




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: I know we have gone over this a million times.

2000-10-18 Thread Chapman, Katrina

#Chr(10)# and #Chr(13)# should do the trick.  One is a CR and one is a LF.
I don't remember which is which though.

--K

-Original Message-
From: Nick Call [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 18, 2000 9:44 AM
To: CF-Talk
Subject: I know we have gone over this a million times.


I am populating a list that will eventually be written to a text file.  I
want to put a carriage return after each entry.  I cannot remember the
syntax.  Can someone kindly email that to me.

Thanks in advance.

Nick




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: I know we have gone over this a million times.

2000-10-18 Thread Alex Sherwood

At 10:43 AM 10/18/2000 -0600, you wrote:
I am populating a list that will eventually be written to a text file.  I
want to put a carriage return after each entry.  I cannot remember the
syntax.  Can someone kindly email that to me.

Thanks in advance.

Nick

cfset theText = theText  CHR(13)

I think thats it.


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: I know we have gone over this a million times.

2000-10-18 Thread Adrian Cesana

I think your looking for this..

#Chr(13)##Chr(10)#

-Adrian

-Original Message-
From: Nick Call [mailto:[EMAIL PROTECTED]]

I am populating a list that will eventually be written to a text file.  I
want to put a carriage return after each entry.  I cannot remember the
syntax.  Can someone kindly email that to me.

Thanks in advance.

Nick



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: I know we have gone over this a million times.

2000-10-18 Thread ron

 I am populating a list that will eventually be written to a text file.  I
 want to put a carriage return after each entry.  I cannot remember the
 syntax.  Can someone kindly email that to me.

#CHR(13)##CHR(10)# (for a PC-style "carriage return", or CRLF)

-ron




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]