Hi
how can I force QSettings to create .ini file in desired directory.
the following code doesnt work:
Code:
... _qsetsettings.sync();
Regards
navid
Printable View
Hi
how can I force QSettings to create .ini file in desired directory.
the following code doesnt work:
Code:
... _qsetsettings.sync();
Regards
navid
You can pass it a full file path and name where the file should be created.
please one line of code !
Please look into the docs into the list of constructors for QSettings.
all of the constructors:
Code:
I dont want to craete a new qsettings.
I only want to save as .ini, the existing native format ones.
I think I already told you in the other thread that you can't do that just like that.
with thanks to all of the posts :D
it solved
Code:
_qstini.sync();
navid