Unrecognized method, property, or field 'stopEditField' for class 'Resp'.

조회 수: 18 (최근 30일)
Yusuf Sür
Yusuf Sür 2023년 1월 7일
답변: Aditya 2023년 1월 24일
Hello everyone
I am trying to code a GUI for my project and I am getting this error when I run my code. I am getting my data from CoolTerm and trying to show my data in real time. I attached the code.
I searched the topics and found some related ones with mine but it didn't fix my problem.
Can you please tell me what is the problem ?
Thank you
I attached the code

채택된 답변

Aditya
Aditya 2023년 1월 24일
Hi,
I understand that you are getting an error when pressing the stop button in an application created with the app designer.
On inspecting the '.mlapp' file that you have shared, following line results in the error:
app.stopEditField.Value=1;
The reason why you are gettin the error, Unrecognized method, property, or field 'stopEditField' for class 'Resp'. is because the application Resp doesn't have any object, stopEditField. You will have to add this object either through properties or from the Component library.
Based on the name, it appears that stopEditField is a Edit Field in the component library. You can add the Edit Field and name it accordingly as shown in the following screenshot.
You will also have to change 1 to a string in order to update the Edit Field
app.stopEditField.Value="1";

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Run on Target Hardware에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by