Array of string cells and guide 'string'

1 次查看(过去 30 天)
I have in a GUIDE generated GUI several places where the user can enter data. This data is validated when the person clicks on a pushb button. Part of that validation is to check if the value makes sense and if not, to output an error message to a listbox in the figure.
So what I have done is:
error_msg = {''};
and I add error messages by doing
error_msg(end+1) = {'Error: something....'};
In the end, I do:
error_msg = error_msg(2:end)';
set(handles.status_text,'String', error_msg, 'Value', length(error_msg));
I was wondering if there is a better way to do this?

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-10-4
I don't see a better way. A slightly different way is:
error_msg=[];
error_msg=[error_msg;{'Error: something....'}];
set(handles.status_text,'String', error_msg, 'Value', length(error_msg))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by