QSettings HKEY_LOCAL_MACHINE
Unsolved
General and Desktop
-
@Roy44
IIRC this should be handled by QSettings automatically:QSettings settings("HKEY_LOCAL_MACHINE\\Software\\Node", QSettings::NativeFormat); // will be mapped automatically to "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Node" in 64bit
-
@raven-worx said in QSettings HKEY_LOCAL_MACHINE:
QSettings settings("HKEY_LOCAL_MACHINE\Software\Node", QSettings::NativeFormat);
The directory I try to access is :
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\MediaSofts\JardiCadI try
QSettings test("HKEY_LOCAL_MACHINE\SOFTWARE\MediaSofts\JardiCad",QSettings::NativeFormat);
QStringList qlkeys = test.allKeys();but it does not work, qlkeys is empty.
-
@Roy44
escape the backslashes ... like i showed. -
@Roy44 said in QSettings HKEY_LOCAL_MACHINE:
Ok It works only if I compile in 32bits
and what were you doing before?