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

17 次查看(过去 30 天)
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