Reputation: 1397
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');
In place of (C)
I would like to insert the actual copyright symbol
. How can I achieve this?
Update: I am using Inno setup version 5.5.3
Upvotes: 1
Views: 587
Reputation: 5456
Your answer is #169
:-)
RegWriteStringValue(HKLM, 'SOFTWARE\Station', 'CopyRightText', #169 + 'Copyright My Company Limited, 2014');
Upvotes: 1