Callback_listbox1 event to change content of another listbox2

조회 수: 1 (최근 30일)
Manuel
Manuel 2013년 8월 7일
I have a listbox1 with different items and when one of these items is selected (e.g project1) this item is used as a field structure name. Therefore the listbox2 is updated with the fieldnames of 'Database.project1', and example is shown below.
function listbox1_Callback(hObject, eventdata, handles)
project1 = get(hObject)%%takes selection item
load('Database.mat');%load Database structure
List = fieldnames(Database.(project1));%take fieldnames from Database.project1 structure
set(hObject.listbox2,'String',List);% update new items for listbox2
But this code is giving the next error:
Argument to dynamic structure reference must evaluate to a valid field name.
Any idea about how can be implemented?
Thanks in advance

채택된 답변

Jan
Jan 2013년 8월 7일
project1 = get(hObject)
seems to be incomplete. Do you mean:
string = get(hObject, 'String');
value = get(hObject, 'Value');
project1 = string{value};
  댓글 수: 2
Manuel
Manuel 2013년 8월 8일
Now it detects perfectly the item selected, thanks a lot.
But when is going to check the fieldnames:
List2 = fieldnames(Database.project1);
I got the next error for this line:
Reference to non-existent field 'project1'.
I think is because is not taken the content of the variable project1 or also could be because project1 is a string and we are making reference to a cell, right? How could I solve that?
Manuel
Manuel 2013년 8월 9일
Problem solve, just need to refer to the content of the variable by using ().
List2 = fieldnames(Database.(project1));

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by