Error when I try to update an edit text field in a GUI
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to change the default value of an edit text field in a GUI, but when I try to update the field from the code, I get an error.
set(handles.month,'String','Does this work?');
gives me the error "Dot indexing is not supported for variables of this type."
It seems that Matlab is objecting to handles.month, but I'm not sure why. handles is passed in to the function where I am calling set() from, so it shouldn't be an issue of inability to access the variable handles. And month is the correct name of the field I'm trying to update.
I don't think my syntax is wrong, based on examples such as https://www.mathworks.com/matlabcentral/answers/18341-display-a-value-in-edit-text-in-gui
Nor does it work to try
month = handles.month
set(month,'String','Does this work?');
which gives me the same error about dot indexing.
댓글 수: 1
Adam
2019년 10월 22일
Either the wrong argument is passed in where you are referring to handles or you have corrupted the handles struct in another function. Or possibly some other reason, but it seems clear that at this point in the code handles is not a struct.
Putting a breakpoint in will let you see immediately what it actually is which will help debug what has caused the problem.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!