フィルターのクリア

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 Center および File ExchangeRun 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