update box with TextAeaValuechanged callback don't run
5 次查看(过去 30 天)
显示 更早的评论
hi, when i change text in this area nothing happens
Am I doing something wrong or should I select Add ValueChangingFcn callback?
0 个评论
采纳的回答
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.
15 个评论
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!