why is the text field in app2 not showing the value I want it to show..?

조회 수: 2 (최근 30일)
Hi !
My boreholestability app ( that is just the front page) is using app2 and here I have a text field which is supposed to show different text according to the color of the lamp. But it is not happening..? Can anybody tell me how I can fix the issue? :)

채택된 답변

Kevin Holly
Kevin Holly 2023년 4월 7일
Please see app2 attached. I changed two lines. You did not have a uitextarea component called "EnterthenragainTextArea" but rather "TextArea". Secondly, There was no subfield "Text", but rather "Value".
app.EnterthenragainTextArea.Text='Choose a valid input';
to
app.TextArea.Value='Choose a valid input';
and
app.EnterthenragainTextArea.Text='Input accepted!';
to
app.TextArea.Value='Input accepted!';

추가 답변 (0개)

카테고리

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