Hi guys, I'm trying to create a multiwindow app. It's my first app but I'm taking this error. How can I solve it?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ahmet emin arslan
el 15 de Mayo de 2019
3 comentarios
Adam Danz
el 15 de Mayo de 2019
What are the values of app.a, app.b etc. and where do they come from? Somewhere the string "mainApp" is being passed to DialogApp() and the string should be "MainApp" instead.
Respuesta aceptada
Adam Danz
el 15 de Mayo de 2019
Editada: Adam Danz
el 15 de Mayo de 2019
I beleive your error is here
% Code that executes after component creation
function startupFcn(app, MainApp, a, b, c)
% Store main app in property for CloseRequestFcn to use
app.CallingApp = mainApp; % <----------------------------- HERE
Should be
app.CallingApp = MainApp; % with capital M
Make that change, save the app, close the app, restart it, and test it. If the problem persists, I'd be glad to look further.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop uifigure-Based Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!