OK button does not work..
Ältere Kommentare anzeigen
Hello,
I am using the below code, but when I click OK in popup window, Nothing is displayed. The code resumes when the popup window is closed.
message = sprintf("Hello World!\nClick the OK button to continue');
uiwait(msgbox(message));
disp('This will print after you click Continue');
Antworten (2)
Mischa Kim
am 23 Feb. 2014
Bearbeitet: Mischa Kim
am 23 Feb. 2014
Oshin, use
message = sprintf('Hello World!\nClick the OK button to continue');
instead. Notice the single prime (') in front of the Hello.
2 Kommentare
Mischa Kim
am 23 Feb. 2014
The error msg you are receiving now ("Subscript indices...") indicates that the issue is located somewhere else in your code. I recommend posting a separate question for that.
Please post follow-up questions and comments as comments , not as answers.
oshin
am 24 Feb. 2014
oshin
am 23 Feb. 2014
1 Kommentar
Please post comments to answers in the corresponding comment section and open a new thread for a new problem. Then post a complete copy of the error message and the line of code, which causes the error.
Did you redefine the name "msgbox" as a variable?
Kategorien
Mehr zu White finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!