Text Modification

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kevin Davis

    Text Modification

    Hello,

    I would like to do some modifcation based upon the value on a text
    field. What I would like to do is have the text turn bold face based
    upon the value of the text field. For example if the field contains a
    value 4 I would like to have the text some where else in the program
    change into bold type.

    Anyhelp would do.


    Kevin Davis

  • Anthony Jones

    #2
    Re: Text Modification


    "Kevin Davis" <kdavis004@msn. comwrote in message
    news:1154568698 .185033.94330@7 5g2000cwc.googl egroups.com...
    Hello,
    >
    I would like to do some modifcation based upon the value on a text
    field. What I would like to do is have the text turn bold face based
    upon the value of the text field. For example if the field contains a
    value 4 I would like to have the text some where else in the program
    change into bold type.
    >
    Anyhelp would do.
    >
    A stab in the dark would be:-

    If rs("field1").va lue = 4 Then
    Response.Write "<b>" & Server.HTMLEnco de(rs("field2") .value) & "</b>"
    End If

    If you provide an abridged version of the relevant code you have so far you
    might get a better answer.
    >
    Kevin Davis
    >

    Comment

    Working...