uiwait and uiresume in App designer to control main code and sub code

In my main code, i need run a new mlapp, but i don't want main code to continue until I return a data from "sub.mlapp", how can i achieve it? thanks!
run("sub.mlapp")
subdata1=getappdata(0,'subdata');
% stop below code until I push return button in sub.mlapp
app.Compresspr.Value=subdata1.data1(1);
app.Compresspr2.Value=subdata1.data1(2);

 Accepted Answer

Hi 邱,
I get that you have a script that you want to continue executing once you have gathered that data from the app getting executed in the background.
You can achieve the desired behaviour using uiwait and uiresume with the steps mentioned below:
  1. Use the uiwait function to pause the execution of the main script after the 'sub.mlapp' is launched.
  2. Create a button in the 'sub.mlapp' and in its callback function gather the necessary data and use uiresume function to continue the main script. E.g.
% In the callback of the created button
% Collect data to return
subdata.data1 = [app.SomeValue1, app.SomeValue2]; % Example data
% Store data in the base workspace or handle it as needed
setappdata(0, 'subdata', subdata);
% Resume execution of the main script
uiresume(app.UIFigure);
Please note that above provided example is just an illustration of the workaround you can follow. Ensure that the data you need is properly set in the 'sub.mlapp' before calling uiresume.
You can visit these documentation links to know more about uiresume and uiwait functions:
  1. https://www.mathworks.com/help/matlab/ref/uiresume.html
  2. https://www.mathworks.com/help/matlab/ref/uiwait.html
I hope it helps in achieving the desired behaviour.

3 Comments

% Resume execution of the main script
uiresume(app.Main);
I have trouble in go code above, because in my sub code, there is no Main? Main and sub are both .mlapp file.
Below is matlab error note:
"Unrecognized method, property, or field 'Main' for class 'sub.mlapp'."
As suggested in my previous response, you need to use app.UIFigure. You have wrongly used it as app.Main.
You can look at the attached sub.mlapp to get a better understanding.
Thanks for your help! I've solved my problem. ^ ^

Sign in to comment.

More Answers (0)

Products

Release

R2024a

Asked:

邱
on 4 Sep 2024

Commented:

邱
on 4 Sep 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!