Borrar filtros
Borrar filtros

How do I automatically run code in a GUI upon startup?

16 visualizaciones (últimos 30 días)
Paul
Paul el 28 de Abr. de 2011
Comentada: Juan Conde el 16 de Mzo. de 2022
I am trying to create a monitoring GUI that will have to run without human intervention and I need it to start running the embedded code without a user having to push a button or click anything. It just needs to run as soon as its opened. Where do I put my code in the main GUI code? Under what callback or function should I place my code so that it will run with no human input?
Also, there is a single text box in the GUI that has a list of email addresses that the main code needs, which may be updated by a user at some time after the code has already started running. So the main code needs to be placed after the handles have been updated, so after all of the createFcn's have been run.
Thanks in advance for any help!

Respuesta aceptada

Paulo Silva
Paulo Silva el 28 de Abr. de 2011
put the code in the OpeningFcn

Más respuestas (6)

Yann Vonderscher
Yann Vonderscher el 31 de Mayo de 2016
I ran into the same issue. I made a GUI that automatically starts calculation on a bunch of files located on a dedicated location. The GUI is there to indicate the status of the calculation, and indicate the name and date of the latest processed file.
It seems that the _OutputFcn(hObject, eventdata, handles) is called only once the GUI is fully loaded (i.e. GUI is visible, and all callbacks are set). Therefore, placing the call to the calculation scripts in this function solves my problem (so far, not fully tested).
Hope that helps.
YAV
  2 comentarios
Joseph Musante
Joseph Musante el 12 de Feb. de 2019
This is exactly what I was looking for, Thanks!
Juan Conde
Juan Conde el 16 de Mzo. de 2022
Worked for me as well when changing certain GUI things (like colormaps) that did not work properly in _OpeningFcn.
Thanks!

Iniciar sesión para comentar.


leeazlee
leeazlee el 7 de Sept. de 2016
put pause(0.005) after line varargout{1} = handles.output; in output function
eg:
function varargout = guidetest_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
pause(0.001)
yourfunction
  1 comentario
Zhengyi
Zhengyi el 20 de Abr. de 2018
Editada: Zhengyi el 20 de Abr. de 2018
This works for normal cases where uiwait is not implemented for the figure.

Iniciar sesión para comentar.


Maxx Chatsko
Maxx Chatsko el 27 de Jul. de 2011
Putting the code in the OpeningFcn will not solve the problem. Since OpeningFcn "runs just before the GUI is displayed", all code in the OpeningFcn will certainly run, but the GUI will not appear.
It seems that the code will need to be placed after the OpeningFcn if you want the GUI to appear on the screen.
I tried placing a checkbox on the GUI with visibility "off", then setting the value to TRUE in the OpeningFcn, and finally placing my code in the callback for the checkbox. This does not trigger the callback however.
If anyone has a solution for making the GUI run upon opening I would greatly appreciate your feedback. Thanks!
  5 comentarios
Maxx Chatsko
Maxx Chatsko el 27 de Jul. de 2011
Ah I see thanks for clearing that up. Unfortunately I am looking for a way for the GUI to appear upon opening AND while continuosly calculating. My program will run indefinately on a machine and I was hoping the GUI could show the user various statistics on calculations being performed.
I guess this is not possible? =(
Paulo Silva
Paulo Silva el 27 de Jul. de 2011
MATLAB only performs one task but surely you can do some workarounds, buttons to control the calculations, using the pause and drawnow functions to update the graphs...
There are also people opening MATLAB twice and having both communicating by some way like local network or files, one runs the calculations and another shows the results to the user.

Iniciar sesión para comentar.


Maxx Chatsko
Maxx Chatsko el 27 de Jul. de 2011
The line preceding the OpeningFcn call reads:
% --- Executes just before myfun is made visible.

Jeff
Jeff el 27 de Jul. de 2011
I put all of my initialization code in the OpeningFcn function line. Here is a snippet.
function CyberCalcMain_OpeningFcn(hObject, eventdata, handles, varargin)
global bd
% Choose default command line output for CyberCalcMain
handles.output = hObject;
%Initialize and load beam data into global variable
load('BeamData');
% Update handles structure
guidata(hObject, handles);
set(handles.oad2radiuscntrl,'Value',6);
  1 comentario
Paulo Silva
Paulo Silva el 27 de Jul. de 2011
I also do that but some people need to do tasks that take some time and the GUI figure only appears when all the OpeningFcn code is done.

Iniciar sesión para comentar.


Romesh
Romesh el 29 de Oct. de 2011
Well my problem is that I want to incorporate a scroll bar using Project Waterloo. The scrollbar seems to only render correctly if the parent figure has already been drawn on the screen, so if I try and create the scroll bar object from within the OpeningFcn it fails because the GUI is yet to be rendered

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