KWG
|
| Posted: 09/02/2002, 7:57 AM |
|
I am trying to display the contents of an Access memo field as a label. I'd like to use a label for formatting and visual reasons as well as the contents being read-only. I can use a memo field and disable the field, but this is for a knowledgebase application and who wants to read greyed out text? Is there a way to display the contents of a memo field as a lable or as regular HTML? Thanks in advance!
KWG
|
|
|
 |
Denis Delarze G.
|
| Posted: 11/28/2002, 7:23 AM |
|
on Before Display Show
ASP:
fldCampoMemo = "<code>" & toHTML(fldCampoMemo) & "</code>"
PHP:
fldCampoMemo = "<code>" . toHTML(fldCampoMemo) . "</code>";
And, in Field Propertis select Html.
|
|
|
 |
|