hi,
in my application i have to read the path from windows registry.
for that i have written code like this
QString keyName
= "somename\\appname";
QString installPath
=settings.
value(keyName
).
toString();
installPath = installPath + "\\";
QSettings settings("HKEY_LOCAL_MACHINE\\SOFTWARE",QSettings::NativeFormat);
QString keyName = "somename\\appname";
QString installPath=settings.value(keyName).toString();
installPath = installPath + "\\";
To copy to clipboard, switch view to plain text mode
but i am not able to get the value of keyname which is in registry
can anyone help me please so that i move further
thank you
Bookmarks