How to supress Excel warning or alerts using MATLAB?

8 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by