Why isn't my app pushbutton able to update an edit field ?

1 visualización (últimos 30 días)
farzad
farzad el 10 de Mayo de 2020
Comentada: Geoff Hayes el 11 de Mayo de 2020
Hi all
I am still trying to solve this problem. I have a push button in my app that has become complex now , and through that, I can not update the values in other edit fields. while when I use other push buttons that are less crowded and more simple, they can update those edit fields. I put the structure of the complex button here, hoping to fin the root cause :
persistent h1
if isempty(h1) || ~isvalid(h1)
h1 = waitbar(0,'message !');
end
if condition
tic
for
try
CatchME
end
end
end
toc
close all
app.AnalysisTimeEditfield.Value= char(duration(0,0,te))
app.WorkingDirectoryEditField.Value=pwd; % none of these two edit fields get updated
  10 comentarios
farzad
farzad el 11 de Mayo de 2020
I have written in my question: I have a push button in my app that has become complex now.
Why is this structure behaving differently, is my question
Geoff Hayes
Geoff Hayes el 11 de Mayo de 2020
Without presenting all of your code or providing a working example that demonstrates this behaviour, how can we know exactly why this structure is behaving differently? How about you try removing all of the code from this callback function except for something like
app.AnalysisTimeEditfield.Value= 'hello'
app.WorkingDirectoryEditField.Value=pwd;
What happens?

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by