update box with TextAeaValuechanged callback don't run

조회 수: 5 (최근 30일)
Luca Re
Luca Re 2023년 6월 24일
댓글: Luca Re 2023년 6월 26일
hi, when i change text in this area nothing happens
Am I doing something wrong or should I select Add ValueChangingFcn callback?

채택된 답변

Cris LaPierre
Cris LaPierre 2023년 6월 24일
It looks like you have already defined a callback function for when the value of the text area is changed. Have you added any code to it? Without seeng the code in the callback function, as well as knowing what it is you expect to happen, it's really difficult to provide specific feedback.
See the Adding callbacks in App Designer page for more details.
  댓글 수: 15
Cris LaPierre
Cris LaPierre 2023년 6월 26일
If you want the callback to execute when you are changing the value programmatically, you just need to call that function inside the callback function that is executing.
% Button pushed function: Button
function ButtonPushed(app, event)
[file,path] = uiputfile ({'*.*'}, 'Select a file');
[~,name,~] = fileparts(file);
app.TextArea.Value=name;
TextAreaValueChanged(app, app.TextArea)
end
Luca Re
Luca Re 2023년 6월 26일
yes, in fact I have already done this

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by