I built a custom ROS form in VFE. I would like the complains of symptoms be bolded and the denies be in regular text. How do I go about doing this?
Are you wanting the Text on the form to be Bold, or the Text Translation to be Bold? This will determine which method you need to use.
Also, how are you recording your 'complains' and 'denies'? Is it a checkbox, a Free-Text box?
It should be pretty simple either way, but I need a bit more info. ^_^
Thank you,
Daniel C.
The text translation on the note. I am using opposing list boxes for the c/o and denies.
You will want to double click on the listbox, and go to the "Translation" tab. The translation should look something like this:
{CFMT(DOCUMENT.COMPLAINS_OF, "", "Complains of: ", "B", "
")}
Full details are in the Centricity Help file, but the CFMT function lets you make parts of the text translation for your checkbox Bold, larger, smaller, italic, etc... to make the whole section bolded, you will add a "B" to the quotations after the DOCUMENT.COMPLAINS_OF:
{CFMT(DOCUMENT.ALLERGIC_POSITIVE, "B", "Complains of: ", "B", "
")}
You will then need to do the same for the "Denies" translation, except you will remove the "B" after the label "Denies":
{CFMT(DOCUMENT.ALLERGIC_POSITIVE, "", "Denies: ", "", "
")}
Please let me know if you need more info on how to format this. You can also find info by pressing F1 in CPS, and searching for "CFMT".
In my listbox the translation area is empty. I have functions looking at the listboxes. Would I add the Bold within the function?
{OBSNOW("ROS GEN COMM", ListBoxResult(DOCUMENT.GENERAL,DOCUMENT.LISTBOX,DOCUMENT.MULTI_LINE1))}
{obsnow("ROS HEAD", ListBoxResult(DOCUMENT.HEAD,DOCUMENT.LISTBOX2,DOCUMENT.MUL
If the text translation is not being generated in the Listobox "Translation" tab, you will need to find our where it is, and add the code I mentioned before in their. It may be in your function, or it may be in another element.
Many of the forms we purchased have ALL of the text translation for the whole note in one form element, and there is a Loooong list of "ifs" and CFMTs that drive what the text of the note looks like. did you build this from scratch, or modify a form that already existed?
Any ideas?