how can i solve this error knowing im working on app designer ?and does the input setappdate under a certain library?
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    

0 件のコメント
採用された回答
  Walter Roberson
      
      
 2022 年 11 月 29 日
        You called setappdate with a final e instead of setappdata with a final a
2 件のコメント
  Walter Roberson
      
      
 2022 年 11 月 29 日
				Your current code has
setappdate(0,'filename',filename);
%        ^--- notice the e
The code needs to be
setappdata(0,'filename',filename);
%        ^--- notice the a
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

