Applies To:
  • CitectSCADA 7.0

Summary:

I am creating a menu by DspPopUpMenu function and I want to use the '&' symbol in my menu, eg. DspPopupMenu(0, "This & That");  The '&' symbol is not displaed in runtime, i.e. the string is displayed as "This That"


Solution:

You can archive this by doubling-up the ampersand character, i.e. DspPopupMenu(0, "This && That"); In runtime this will be displayed as “This & That”

 

Keywords:
 

Attachments