Integrate two GUIs into a single .exe file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Aditya
el 26 de Feb. de 2014
Comentada: Dishant Arora
el 27 de Feb. de 2014
Hi friends, I want to integrate two GUIs,A and B,into a single .exe file. On executing the .exe file,a message box should appear asking the user to 'Choose One' with two tabs 'A' and 'B'.
A click on 'A' should open the A GUI and a click on 'B',the B GUI. Please tell me how to do this. Thanks in advance.
0 comentarios
Respuesta aceptada
Walter Roberson
el 26 de Feb. de 2014
choice = menu('What''s it going to be?', 'Yes', 'No');
if choice == 1
rick_roll();
elseif choice == 2
maoist_hiku();
else
disp('Couldn''t make up your mind, eh?');
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!