Reputation: 121
My App takes input for Id and Birthdate in QLineEdit and sends the form data as http post request. Is it possible for the last entered input to stay when app is closed and then restarted??
Upvotes: 1
Views: 1051
Reputation: 17535
Short answer: Use QSettings
For example:
QSettings settings(QSettings::UserScope);
settings.setValue("Birthdate", date);
then...
QSettings settings(QSettings::UserScope);
dateLineEdit->setText(settings.value("Birthdate").toString());
See the documentation regarding scope and file formats and determine what usage suits your needs best.
Upvotes: 2