フィルターのクリア

How to supress Excel warning or alerts using MATLAB?

3 ビュー (過去 30 日間)
Anurag Agrawal
Anurag Agrawal 2020 年 6 月 19 日
回答済み: Anurag Agrawal 2020 年 6 月 19 日
How to supress Excel warning or alerts using MATLAB?

採用された回答

Anurag Agrawal
Anurag Agrawal 2020 年 6 月 19 日
You can supress excel alerts/warnings using this command:
e = actxserver('Excel.Application');
set(e, 'DisplayAlerts', 0);
This will supress all the warings. So, if you want to start warning messages again after some point, use this:
set(e, 'DisplayAlerts', 1);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by