Notepad focus window
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Here is what I am using to open a text file in MATLAB.
command = sprintf ( 'notepad %s', fullpathOfYourFile ); System ( command )
However, when it opens the notepad filename, the focus return to my figure and my filename goes in the background. I want my file that I opened to be the focus.
Can someone help me?
0 comentarios
Respuesta aceptada
Matt Fig
el 18 de Mzo. de 2011
It works here.
command = sprintf ('notepad %s', [pwd,'\myfile.m']);
system (command);
Did you mean that you want MATLAB to return after the notpad file is opened instead of remaining 'Busy'? Then add an & to the command.
command = sprintf ('notepad %s', [pwd,'\myfile.m', '&']);
system (command);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Environment and Settings 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!