Message window in GUI (MatLab)

Hello. I am trying to create a text window in GUI that will be used to display messages/current activity of the program. It should be similar to the Command Window of matlab. That is, when I want to output some message, the message should appear in my text window of the GUI, not in the Command Window. Also, the text window will be used only for output, so no input will be preformed. I use the 'edittext' component as follows:
set(handles.edit1,'String','My message' );
however, next time when I want to output a new message, I want the old message to be present in the message box as well. That is, my message box should accumulate all the messages over time (or at least several most recent strings) just like Command Window or any console window does.
Thank you

 Respuesta aceptada

Walter Roberson
Walter Roberson el 13 de Oct. de 2011

0 votos

oldmsgs = cellstr(get(handles.edit1,'String'));
set(handles.edit1,'String',[oldmsgs;{'My message'}] );
And be sure to set the edit box to 'Enable', 'disable'.
I thought I wrote about this topic just about a week ago, but I cannot seem to find that message.
Automatically position the scroll bar to any particular position in the edit list box requires resorting to the Java level.

6 comentarios

Naz
Naz el 13 de Oct. de 2011
Thanks Walter.
It works (after I set the Max value >1). Now, how do I position the scroll bar at the bottom? Is it doable in Matlab?
Walter Roberson
Walter Roberson el 14 de Oct. de 2011
To position the editbox scroll bar at the bottom, you need to head over to Undocumentedmatlab.com
Myself, I work a different way: I put a text box inside a uipanel, set the uipanel to clipping, add a scrollbar outside of the uipanel, and I have the scrollbar change the Position property of the text box to make it appear to scroll (when really it is being panned and the edges clipped by the uipanel boundaries.)
Naz
Naz el 14 de Oct. de 2011
I will try to do that
I used a trick to overcome the fact that the scroll doesn't update when you add new text lines to the Edit Box. If you change the order of 'My message' and 'oldmsgs' the new messages will always appear on top of the edit text. Finally, if the user wants to go back to past messages he just need to scroll down the text.
oldmsgs = cellstr(get(handles.edit1,'String'));
set(handles.edit1,'String',[{'My message'};oldmsgs] );
Nguyen Thuan
Nguyen Thuan el 9 de Ag. de 2020
Hi Victor! I have add this command in GUI of app designer:
set(handles.edit1,'String',[{'My message'};oldmsgs] );
However, there is an error appearing: "Undefined variable "handles..."
Could you please tell me how to use this command in GUI?
Thanks a lot!
app.APPROPRIATE_NAME_GOES_HERE.Value = [{'My message'};oldmsgs];
where APPROPRIATE_NAME_GOES_HERE is the name you gave to the text area.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.

Preguntada:

Naz
el 13 de Oct. de 2011

Comentada:

el 9 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by