Display message window
SHOWINFOWINDOW creates a small dialog window which displays a user-defined message. It is quite like MATLAB's msgbox but without an OK button. Although msgbox could be used for the simple display of a message that informs the user about a process being performed (and is not expected to last long, else a waitbar/timebar could be used but at a cost of running time), the presence of the OK button that closes the window on press could be annoying. SHOWINFOWINDOW resolves this problem by removing the button. Additionally, if you wish to write a script or create a GUI where you do not wish the user to accidenatlly hit the close button in the upper right corner of the window, you can remove the comment on line 82 of the code concerning the 'CloseRequestFcn' property of the dialog. However, if you do that you must assign a handle to showinfowindow so you can change its 'CloseRequestFcn' property to 'closereq' when your process is done or else you might end up with a non-closing window! If that happens, one way to resolve this could be to use the findobj function:
non_closing_window_handle = findobj('CloseRequestFcn','');
set(non_closing_window_handle,'CloseRequestFcn','closereq')
close(non_closing_window_handle)
Although this script was created for something trivial, I found it useful especially in my GUIs where I wanted to briefly display some information in a very simple way and especially when I wanted to avoid someone causing such windows to close when running a process within a GUI, probably resulting in errors. Further help on its usage with some syntax examples can be found inside the code.
Cite As
Panagiotis Moulos (2024). Display message window (https://www.mathworks.com/matlabcentral/fileexchange/15288-display-message-window), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Version | Published | Release Notes | |
---|---|---|---|
1.0.0.0 |