Modifying input arguments in the MatLab 2017 App designer

4 visualizaciones (últimos 30 días)
Richard DeMark
Richard DeMark el 20 de Dic. de 2017
Comentada: Basem Nabil el 9 de Mayo de 2019
Using MatLab 2017 App Designer, I am trying to pass arguments from one app to another app. For example, when user data is entered from one app, I wish to close the first app and pass the data in the form of input arguments upon immediately opening the second app from the first app. I have not found a way to modify the input arguments of an app even though I am repeatedly seeing that it is possible using https://www.mathworks.com/help/matlab/creating_guis/app-designer-startup-function.html as a reference. However, I am not seeing the "app input arguments" in the editor tab in my version.
Any advice on how to overcome this issue? Thank you in advance for your assistance!

Respuestas (1)

Melissa Williams
Melissa Williams el 24 de En. de 2018
Hi Richard,
This feature was introduced in MATLAB R2017b. The documentation always refers to the most current version of MATLAB. If possible, your best bet is to upgrade to R2017b.
If upgrading is not an option, you can achieve what you are trying to do by adding a public property on your second app.
Instead of passing in the value when you launch the app,
  1. launch the second app and hold a reference to it, such as mySecondApp = app2.
  2. set the value you want to pass to the public property, mySecondApp.foo = someValue.
  3. Close the first app
Hope this helps, let me know if any steps need additional clarification
-Melissa
  1 comentario
Basem Nabil
Basem Nabil el 9 de Mayo de 2019
Hello,
I have the same issue and I followed your steps but I keep getting an error. That's my code.
services in the 2nd app.
ID & Name are 2 public properties in the 2nd app.Annotation 2019-05-09 235522.png
services();
ser = services;
ser.ID = record.ID;
ser.Name= Name;
closereq;

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE 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!

Translated by