Memo Field with Access

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default 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 >)
    >John Doe called to notify that he wants to cancel has membership.
    >
    >He is not sure what number to call.
    * Note the space between the sentences.

    When I call the field back through <cfoutput> it displays it without the
    space: i.e.
    >John Doe called to notify that he wants to cancel has membership. He is not
    sure what number to call.

    Can some please help me. How do I display it with the space without having to
    type <br> after each paragraph.

    jtoevs32 Guest

  2. Similar Questions and Discussions

    1. #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...
    2. 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...
    3. problem displaying MEMO field from ACCESS 2000 on WINDOWS 20003
      Hi, I have been using access 2000 for two years on WINDOWS NT to display dynamic aweb page using ASP My ISP has now changed to Windows 2003,...
    4. 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...
    5. 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...
  3. #2

    Default Re: Memo Field with Access

    TEXTAREA has a "WRAP" attribute that will solve your problem. I don't remember
    which value the attribure takes to do this - I think it is "hard". See
    [url]http://www.idocs.com/tags/forms/_TEXTAREA_WRAP.html[/url]

    jdeline Guest

  4. #3

    Default Re: Memo Field with Access

    when you displaying your text put it in <PRE>YOUR TEXT</PRE> tags.
    cfmlgirl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139