Scot VanAlstine wrote: >When I loop to build a report I get a report with all the records run together >I want to put a line feed AFTER the variable. >I cannot seem to get the syntaz correct. Here is what I have: > > <cfset str = str & str_Line (chr(13))(chr(10))"> > >Anyone? > > Whats str_line? A report row?
<cfset fullreport = fullreport&reportline&chr(13)&chr(10)> Is that the kind of thing you're after? Regards Stephen ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:15:699 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
