how to open another gui from existing gui using push button ?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ElizabethR
il 17 Giu 2016
Commentato: Bachtiar Muhammad Lubis
il 29 Ott 2018
i have to gui, the main gui and the sub gui. I want to open the sub gui from main gui using push button ( guide ). How to make it ? thank you
0 Commenti
Risposta accettata
Più risposte (1)
Shameer Parmar
il 17 Giu 2016
Lets consider you have 'ABC' is main GUI and 'XYZ' is sub GUI and 'OK' is the push button of GUI ABC
then in callback of OK push button of GUI ABC, simply put..
XYZ; % this command is to open the new GUI
close(ABC); % this command is to close the existing GUI
4 Commenti
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!