I am creating a form using VFE and need a button to execute a quick text that will lauch a HTML. Or at least execute the MEL used to launch it. I have tried using RunProcess and SetValues but am not getting something right because I can't get the button to work.
Quick text currently set up is
.bbsAddProb {show_html_form("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html","Blackbird Clinical Framework")}
I've tried the following with
Run Process
DOCUMENT.ASSESSMENT=.bbsAddProb{show_html_form ("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html","Blackbird Clinical Framework")}
{show_html_form("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html","Blackbird Clinical Framework")}
Set Value
{show_html_form("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html","Blackbird Clinical Framework")}
We do the same at our clinic.
Use RUNPROCESS with the following in the box:
{show_html_form("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html","Blackbird Clinical Content")}
We have a button for problem search also:
RUNPROCESS
{show_html_form("//localserver/EncounterForms/BBS_EFS/BBS_redirect.html?searchTerm=","Blackbird Clinical Framework")}
I had already tried this and it did not work for me.... Weird that it does for you. However the solution above did work 🙂 Thanks for you feedback!
Perfect!! Thank you!