View Single Post
  #3  
Old 24-03-2011, 01:53
BlackWhite BlackWhite is offline
Registered User
 
Join Date: Jul 2010
Location: Spain
Posts: 7
Thanks: 2
Thanked 0 Times in 0 Posts
BlackWhite is on a distinguished road
Sorry for the delay
Quote:
Originally Posted by Joe Forster/STA View Post
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 View Post
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
Reply With Quote