how to create a msgbox without "ok" button?

45 ビュー (過去 30 日間)
A
A 2012 年 12 月 19 日
I need to create a "please wait..." message box, that will keep user from interacting with GUI and will close once internal calculation is completed. I don't want it to have the "ok" button. How do I do that?
  2 件のコメント
Doug Hull
Doug Hull 2012 年 12 月 19 日
If there is no button, what would you do to close it? MSGBOX is a convenience, you can write your own GUI pretty easy.
A
A 2012 年 12 月 19 日
I would do this:
h=<dialog>('please wait');
<calculation>
close (h);

サインインしてコメントする。

採用された回答

Sean de Wolski
Sean de Wolski 2012 年 12 月 19 日
It sounds like you want a waitbar.
doc waitbar
  2 件のコメント
A
A 2012 年 12 月 19 日
that would be nice; except the calculation is actually just a save command to save 2 gigs of data; so there is no way to track progress in a waitbar
Sean de Wolski
Sean de Wolski 2012 年 12 月 19 日
Then literally just make a modal figure that says saving...
h = figure('units','pixels','position',[500 500 200 50],'windowstyle','modal');
uicontrol('style','text','string','Saving...','units','pixels','position',[75 10 50 30]);
%blah
close(h)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDialog Boxes についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by