|
Posted by TomT on August 24, 2004, 11:57 am
Please log in for more thread options
Hi,
I've created a form that has a 3 fields.
2 textboxes (username & password)
1 TextArea (notes)
I have linked this to an access DB.
This is working well, the user enters thier Username & password, fills
in the notes field and the notes are then updated, as follows:
username - notes..notes..notes..notes..notes..
ie: Bob D - This a sample note.
This displays in the textarea fine.
Is there anyway to write the Username in Bold ?
Either
Using <b>username</b> and entering it into the DB, but how do I
display the username bold in the textarea.
Or Any other ideas ??
Thanks
|
|
Posted by Harlan Messinger on August 24, 2004, 10:12 am
Please log in for more thread options
> Hi,
>
> I've created a form that has a 3 fields.
>
> 2 textboxes (username & password)
> 1 TextArea (notes)
>
> I have linked this to an access DB.
>
> This is working well, the user enters thier Username & password, fills
> in the notes field and the notes are then updated, as follows:
>
> username - notes..notes..notes..notes..notes..
> ie: Bob D - This a sample note.
>
> This displays in the textarea fine.
>
> Is there anyway to write the Username in Bold ?
No. No markup is allowed inside a textarea, which is only designed to
contain plain text.
|
|
Posted by TomT on August 24, 2004, 3:12 pm
Please log in for more thread options What can I do then ??
Any Ideas ?
On Tue, 24 Aug 2004 09:12:47 -0400, "Harlan Messinger"
>
>> Hi,
>>
>> I've created a form that has a 3 fields.
>>
>> 2 textboxes (username & password)
>> 1 TextArea (notes)
>>
>> I have linked this to an access DB.
>>
>> This is working well, the user enters thier Username & password, fills
>> in the notes field and the notes are then updated, as follows:
>>
>> username - notes..notes..notes..notes..notes..
>> ie: Bob D - This a sample note.
>>
>> This displays in the textarea fine.
>>
>> Is there anyway to write the Username in Bold ?
>
>No. No markup is allowed inside a textarea, which is only designed to
>contain plain text.
|
|
Posted by Harlan Messinger on August 24, 2004, 11:27 am
Please log in for more thread options
> What can I do then ??
First, don't top-post, because then when we get this far, when I place my
responses directly after the remarks from you to which they relate, the
entire message comes completely out of order and no one can follow it.
Second, there's nothing you can do if you want the data to be displayed in a
text area and you want it to be variably styled. You can either display
plain text inside a text area in a uniform style, or you can display fully
styled text but not in a text area.
Why do you want it in a text area?
>
> Any Ideas ?
>
> On Tue, 24 Aug 2004 09:12:47 -0400, "Harlan Messinger"
>
> >
> >> Hi,
> >>
> >> I've created a form that has a 3 fields.
> >>
> >> 2 textboxes (username & password)
> >> 1 TextArea (notes)
> >>
> >> I have linked this to an access DB.
> >>
> >> This is working well, the user enters thier Username & password, fills
> >> in the notes field and the notes are then updated, as follows:
> >>
> >> username - notes..notes..notes..notes..notes..
> >> ie: Bob D - This a sample note.
> >>
> >> This displays in the textarea fine.
> >>
> >> Is there anyway to write the Username in Bold ?
> >
> >No. No markup is allowed inside a textarea, which is only designed to
> >contain plain text.
>
|
|
Posted by Chris Morris on August 24, 2004, 4:24 pm
Please log in for more thread options > On Tue, 24 Aug 2004 09:12:47 -0400, "Harlan Messinger"
> >> This is working well, the user enters thier Username & password, fills
> >> in the notes field and the notes are then updated, as follows:
> >>
> >> username - notes..notes..notes..notes..notes..
> >> ie: Bob D - This a sample note.
> >>
> >> Is there anyway to write the Username in Bold ?
> >
> >No. No markup is allowed inside a textarea, which is only designed to
> >contain plain text.
>
> What can I do then ??
You could use plain-text *bold*. It's generally understood as emphasis.
> Any Ideas ?
Alternatively, change the storage of the notes field to be a notes
table, with username and note as fields within that. Then display them
in some other sensible way - i.e. don't display already-entered notes
inside the textarea.
You could do this without needing to change the storage format if you
did some text processing of the current notes content.
--
Chris
|
| Similar Threads | Posted | | Recommend a good text area formatting interface? | February 15, 2006, 4:39 pm |
| Textarea Text Invisible | December 16, 2004, 7:16 am |
| Text alignment in | November 23, 2004, 10:05 am |
| can a textarea on a form be used to cast text to a specific charset like UTF-16? | August 11, 2004, 9:38 am |
| can't get text field to align with textarea field | March 9, 2005, 11:09 am |
| table formatting | February 6, 2005, 3:06 pm |
| Bidirectional control (formatting) characters | August 16, 2006, 12:56 pm |
| Formatting Prob: Span Moves Outside Containing DIV | April 25, 2007, 8:54 am |
| Ignore CSS table formatting & use standard HTML? | April 6, 2005, 2:02 pm |
| Firefox/gecko tables formatting bug...or clueless coder? | June 27, 2005, 7:41 pm |
|