Error handling with graphical user interface

6 views (last 30 days)
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:

Accepted Answer

Walter Roberson
Walter Roberson on 11 Sep 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.
  1 Comment
William Thielicke
William Thielicke on 11 Sep 2024
Any other idea how to make users aware of the command window and / or potential error messages...? Maybe an extra function that runs in the background with a timer and checks if the GUI still responds, and when it does not, it brings the command window to the foreground...?

Sign in to comment.

More Answers (0)

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!