Sorry for the delay
Quote:
Originally Posted by Joe Forster/STA
Try replacing ' (single apostrophe) with the usual escape sequences: '' (two apostrophes) or \' (backslash and apostrophe).
|
No work, at least for me. Directly assigned as two ' to the name of the folder
also thank
Quote:
Originally Posted by peterf1999
The characters can be specified by their character value (usually an ASCII code):
Code:
RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'#39's Creed Brotherhood',
'InstallDir', appath)
or
Code:
RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Ubisoft\Assassin'+chr(39)+'s Creed Brotherhood',
'InstallDir', appath)
|
I tested Assassin'+chr(39)+'s and works
Thanks and greeting