Borrar filtros
Borrar filtros

GUI Question: Save user preferences between everytime an application is launched?

1 visualización (últimos 30 días)
If a GUI requires an input of name or something similar, is it possible to 'save' this so that the next time the application launches, that input is still there?
Thanks

Respuestas (1)

Geoff Hayes
Geoff Hayes el 5 de Mzo. de 2016
A - when the GUI closes, you can save any data you want to a mat file. See save for details. Then, when the GUI is launched (some time in the future), you can look for that mat file and load the data from it. See the attached for an example which does the following in the OpeningFcn
fileName = 'myGuiData.mat';
if exist(fileName,'file')
data = load(fileName);
username = data.username;
else
username = char(inputdlg('Please enter your name: '));
save(fileName,'username');
end
welcomeStr = ['Welcome ' username '!'];
set(handles.text1,'String',welcomeStr);
In the above, we check for the existence of a file name (the initialization file for the GUI). If it is found, then we load its data and, in particular, the user name. Else, we prompt the user for his or her name and save that result to a file. The user's name is then set in the text control.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by