any application closing using matlab
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Jan
el 28 de Nov. de 2012
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.
Respuestas (4)
Vishal Rane
el 28 de Nov. de 2012
2 comentarios
Matlab2010
el 9 de Oct. de 2014
Editada: Matlab2010
el 9 de Oct. de 2014
dos('taskkill /F /IM acroRd32.exe');
Kaustubha Govind
el 28 de Nov. de 2012
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 comentarios
Walter Roberson
el 29 de Nov. de 2012
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.
0 comentarios
Babak
el 29 de Nov. de 2012
You need to execute a dos command. Here's a piece of MATLAB's help:
Please see the documentation on
status = dos(command)
1 comentario
Walter Roberson
el 29 de Nov. de 2012
The dos() command and the system() command earlier suggested are the same thing.
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!