I currently have a action button that will generate a email for a department to send. They would like the text before the field information to be bolded. Is there a way to do this with the code that I have?
@Command([FileSave]);
@PostedCommand([MailComposeMemo]);
@PostedCommand([EditGotoField]; “EnterSendTo”);
@PostedCommand([EditInsertText]; “”);
@PostedCommand([EditGotoField]; “EnterCopyTo”);
@PostedCommand([EditInsertText]; “”);
@PostedCommand([EditGotoField]; “Body”);
@PostedCommand([EditInsertText];
@NewLine+
"The time the problem occurred: “@Text(Date)+” “+@Text(Time)+” "+Time_Zone+@NewLine+
"User Name: “+L_Name+”, "+F_Name+@NewLine+
"User ID: "+User_Name+@NewLine+
"Firm Code: "+Firm_Code1+@NewLine+
"Workstation OS: "+OS+@NewLine+
"Service Pack: "+OS_ServicePack+@NewLine+
"Browser Version: "+Browser+@NewLine+
"Memory Size: "+Memory+@NewLine+
"IE Version #: "+Version+@NewLine+
"IP Address: "+IP+@NewLine+
"Proxy Server Address: "+Proxy_Address+@NewLine+
"Proxy Server Port: "+Proxy_Port+@NewLine)
Thank you for any assistance ![]()