how can i solve this error knowing im working on app designer ?and does the input setappdate under a certain library?
1 view (last 30 days)
Show older comments
0 Comments
Accepted Answer
Walter Roberson
on 29 Nov 2022
You called setappdate with a final e instead of setappdata with a final a
2 Comments
Walter Roberson
on 29 Nov 2022
Your current code has
setappdate(0,'filename',filename);
% ^--- notice the e
The code needs to be
setappdata(0,'filename',filename);
% ^--- notice the a
More Answers (0)
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!