Ask a Question related to Coldfusion Database Access, Design and Development.
-
timsilva #1
Format Access memo field?
Hi all,
Just trying to figure out how to format a returned MS Access memo field with Coldfusion.
Nothing special. Just want it to retain returns and paragraphs...
Thanks,
Tim
timsilva Guest
-
#38458 [Asn->Csd]: Fails to get values of fields following a MEMO type field in MS Access
ID: 38458 Updated by: wez@php.net Reported By: costas at meezon dot com -Status: Assigned +Status: ... -
#38458 [Com]: Fails to get values of fields following a MEMO type field in MS Access
ID: 38458 Comment by: johnc at inkjetinc dot com Reported By: costas at meezon dot com Status: Assigned Bug... -
Memo Field with Access
Hopefully someone can help me with this. I have a memo field in Access, I type for example into the text box on the webpage: (ignore the >) *... -
How do I get an Access memo field over several lines in HTML?
I'm trying to replace vbCrLf with <BR>, but it doesn't work for some reason. Could someone please correct the code, or tell me of a better... -
MS Access Memo Field and ASP
I have a memo field in a MS Access table. The contents of the field may look like this: 1. This is number one 2. This is number 2 3. Skipping... -
Ken Ford - *TMM* & PVII #2
Re: Format Access memo field?
Tim,
Use ParagraphFormat()
#ParagraphFormat(stringToFormat)#
--
Ken Ford
Certified Dreamweaver MX 2004 Developer
PVII Support Team
[url]http://www.projectseven.com[/url]
Team Macromedia Volunteer - Dreamweaver
"timsilva" <webforumsuser@macromedia.com> wrote in message news:cv181r$fac$1@forums.macromedia.com...> Hi all,
>
> Just trying to figure out how to format a returned MS Access memo field with Coldfusion.
> Nothing special. Just want it to retain returns and paragraphs...
>
> Thanks,
> Tim
Ken Ford - *TMM* & PVII Guest
-
-
keann #4
Re: Format Access memo field?
I have been looking for two days for this answer, and now that I've read it, I
don't know exactly how to apply it. I have data in an Access database Memo data
type field. I created a recordset and a dynamic table to display the data from
Access. The memo data type is not formatted when returned in ColdFusion. If I
use the <pre></pre> tags in Dreamweaver, it's formatted in ColdFusion, but I
can't get the text to wrap in the column, therefore, the column is extremely
wide.
Here is my code:
<cfoutput query="printmanual">
<tr>
<td>#printmanual.PolicyNumber#</td>
<td>#printmanual.PolicyTitle#</td>
<td>#printmanual.PolicyDescription#</td>
</tr>
</cfoutput>
PolicyDescription is the Memo data type field. How do I view it in ColdFusion
in it's original format with paragraphs?
I really, really appreciate any help. Thank you,
Kelli
keann Guest
-
SafariTECH #5
Re: Format Access memo field?
wasn't your question answered by the post prior to yours?
#ParagraphFormat(stringToFormat)#
in your case
#ParagraphFormat("#printmanual.PolicyDescription#" )#
drop the pre tags
SafariTECH Guest
-
jorgepino #6
Re: Format Access memo field?
you could use this!
'#ReplaceNoCase(printmanual.PolicyDescription,'#Ch r(13)#','<BR>',"all")#'>
jorgepino Guest



Reply With Quote

