This topic is locked
[SOLVED]

  Custom Field format

7/16/2010 7:05:57 AM
ASPRunnerPro General questions
S
Scruffy author

I've been looking at the custom field format to join various fields together.
Example:

strValue = data("FirstName") & data("LastName")

where FirstName and LastName are actual field name
Is it possible to format the different parts of the field. At the moment i've just used UCase, but would be nice if i could also get BOLD/ITALICS/HYPERLINKS etc.
Is this possible?

Sergey Kornilov admin 7/16/2010

It's possible. Here is an example:

strValue = "<b>" & data("FirstName") & "</b> <i>" & data("LastName") & "</i>"
S
Scruffy author 7/16/2010



It's possible. Here is an example:

strValue = "<b>" & data("FirstName") & "</b> <i>" & data("LastName") & "</i>"



Ah! Many thanks. That was simple enough <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=51205&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' />
Cheers