Error handling with graphical user interface
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
William Thielicke
el 10 de Sept. de 2024
Comentada: William Thielicke
el 11 de Sept. de 2024
Hi,
sometimes, a graphical user interface tool that I published crashes. This tool is often used by people that are new to Matlab and / or new to computers. The graphical user interface of my tool runs in a window in front of Matlabs command window. Often, the users do not see the error message in Matlabs command window, but they only notice that the graphical user interface hangs. It then takes an extra step to get the required error message from them to help, and I would like to avoid this.
I am already handling the vast majority of error messages, but sometimes errors still get through.
Therefore my question:
Is it possible to put a simple try / catch / end around my full tool that catches every exception, and then displays the error in a new window in the foreground? I would also like to add hyperlinks to support groups etc. I can do all the latter, but my first attempt to put a try / catch around the GUI figure funtion did not work (I still get the error displayed in Matlabs command window). It is about this main file, all functins are directly or indirectly called from this graphical user interface:
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Sept. de 2024
When you create a GUI, any try/catch you have only applies to code that is run directly from the try/catch block. The try/catch will not apply to code that is activated by clicking on user interface elements (not unless there is try/catch within that code.) Code that is activated by clicking on user interface elements is effectively run as-if the code were started from the "base" interface as-if it were top-level code.
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!