Integrate two GUIs into a single .exe file

2 次查看(过去 30 天)
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.

采纳的回答

Walter Roberson
Walter Roberson 2014-2-26
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
  2 个评论
Aditya
Aditya 2014-2-27
Great! That works. But how can I make a single .exe file with A.fig and B.fig GUIs integrated in it. So,when started,it asks the user the above details.Thanks.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by