本文介绍了在代码部分使用版权符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用inno设置程序来构建设置工具包.我有一个特殊要求,我需要在带有版权符号的注册表中插入一个字符串值.我正在使用以下代码在[Code]
部分中插入字符串.
I am using inno setup to build a setup kit. I have a special requirement where I need to insert a string value into the registry with copyright symbol. I am using following code to insert the string in [Code]
section.
RegWriteStringValue(HKLM, 'SOFTWARE\Station', 'CopyRightText', '(C) Copyright My Company Limited, 2014');
代替(C)
,我想插入实际的copyright symbol
.我该如何实现?
In place of (C)
I would like to insert the actual copyright symbol
. How can I achieve this?
更新:我正在使用Inno安装程序版本5.5.3
Update: I am using Inno setup version 5.5.3
推荐答案
您的答案是#169
:-)
RegWriteStringValue(HKLM, 'SOFTWARE\Station', 'CopyRightText', #169 + 'Copyright My Company Limited, 2014');
这篇关于在代码部分使用版权符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!