App Designer, display number in numeric field

조회 수: 100 (최근 30일)
JoE
JoE 2021년 6월 10일
댓글: Ignacio Roa 2023년 11월 29일
Hey guys,
Im new to the app designer. All i want to do right now is to change the value of a numeric edit field.
Im holding it very basic. I use a push button and a numeric field. Sadly the displayed number in the app is not changing. Any help?
This line is changing the value but doesnt change the displayed number.
function ButtonPushed(app, event)
TESTEditField.Value = 1337;
end
  댓글 수: 1
JoE
JoE 2021년 6월 10일
function ButtonPushed(app, event)
app.TESTEditField.Value = 1337;
end

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

답변 (1개)

Shadaab Siddiqie
Shadaab Siddiqie 2021년 6월 15일
From my understanding you are getting an not able to change the testeditfield value, this is because you are not setting this variable inside the app object. Thus you can set the TESTEditField.Value present in the app object like so:
function ButtonPushed(app, event)
app.TESTEditField.Value = 1337;
end
Hope this made it clear.
  댓글 수: 1
Ignacio Roa
Ignacio Roa 2023년 11월 29일
im having a similar problem. I want to display the value of theta1 but it doesnt. Only display the result if i modify the edit field were i want to show the results.
function EditField_16ValueChanged(app, event)
X = app.EditField_16.Value;
Y = app.EditField_17.Value;
Z = app.EditField_18.Value;
theta1=atan2(Y,X);
R= sqrt(X^2+Y^2);
app.EditField_9.Value=theta1;
end

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

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by