any application closing using matlab
显示 更早的评论
hello i want to know if some on have an idea what command to be used to close a ms-word document using matlab or some code to do that task the word document can be at any memory location of the disk and not only word but even for any other application
1 个评论
Jan
2012-11-28
Please use dots to separate the sentences. The location of a file on the hard disk does not matter the problem: If you want to kill an application, this works even without an opened file.
回答(4 个)
Vishal Rane
2012-11-28
2 个评论
PK
2012-11-29
Matlab2010
2014-10-9
编辑:Matlab2010
2014-10-9
dos('taskkill /F /IM acroRd32.exe');
Kaustubha Govind
2012-11-28
If the open application is a COM server, you might also be able to use the MATLAB COM API (Although I haven't tried this on my end):
h = actxGetRunningServer('Word.Application');
h.Quit();
2 个评论
PK
2012-11-29
Bachtiar Muhammad Lubis
2019-2-7
is actxGetRunningServer() same with actxserver() ?
Walter Roberson
2012-11-29
0 个投票
Java Robot Class to automatically access the taskbar and trigger the commands to kill the task.
There is no simple command to do what you want.
Babak
2012-11-29
You need to execute a dos command. Here's a piece of MATLAB's help:
Please see the documentation on
status = dos(command)
1 个评论
Walter Roberson
2012-11-29
The dos() command and the system() command earlier suggested are the same thing.
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB Compiler 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!