how to open another gui from existing gui using push button ?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Shameer Parmar
el 17 de Jun. de 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 comentarios
ElizabethR
el 18 de Jun. de 2016
Linda Yakoubi
el 20 de Abr. de 2018
Editada: Linda Yakoubi
el 20 de Abr. de 2018
didn'T work ... :/
Thiyaga Raj
el 2 de Oct. de 2018
Nice, It Works
Bachtiar Muhammad Lubis
el 29 de Oct. de 2018
Will it run the .fig and .m files of XYZ by type XYZ; ?
Categorías
Más información sobre Interactive Control and Callbacks en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!