MATLAB: MATLAB 2018b App Designer

app designerguiMATLABmatlab 2018b

Hello everyone,
I want to design a GUI that asks the user to insert some inputs then click on a pushbutton to go to the next page where the user is asked to insert some parameters then click on a puch button to run a code.
I read that I can do that by creating multiple GUIs, where clicking on the push button in GUI1 opens GUI2 and so on, however, that's not what i want, i want in the same GUI, when the button is pushed, the contents of the GUI change to the new contents, can this be done?
If not, then I want to ask how can I close GUI1 after clicking the button and GUI2 opens?
the command close(GUI1) doesn't work with me. I am using MATLAB 2018b.
Thank you

Best Answer

Hi,
To change the contents of GUI on a click of pushbutton, the visibility of existing components can be turned off and the visibility of new components that appear on click of pushbutton can be turned on. For example,
app.Slider.Visible='off';
app.UITable.Visible='on';
To close GUI1 after clicking the pushbutton use the following command in the callback of pushbutton
app.delete