Open Application with MATLAB

31 visualizaciones (últimos 30 días)
Sebastian Caceres
Sebastian Caceres el 15 de Feb. de 2021
Comentada: Sebastian Caceres el 15 de Feb. de 2021
Hello!
I'd like to use MATLAB to open 'Zebra Setup Utilities'(an application used to control Zebra label printers). My ultimate goal is use matlab to print labels from a printer, but I am struggling on step 1 which is to even open the application
I have tried using the !, system(' '), and winopen() commands which I have read are supposed to open up executable programs from the command line. However, for the first two I recieve this error
'Zebra' is not recognized as an internal or external command,
operable program or batch file.
and this error for winopen
Error: Invalid expression. Check for missing multiplication operator, missing or unbalanced
delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses.
Are these commands only meant to open up matlab files? Because they sucessfully open those! Are there any other ways I should try to open up the Zebra Setup Utilities?

Respuesta aceptada

Mario Malic
Mario Malic el 15 de Feb. de 2021
Editada: Mario Malic el 15 de Feb. de 2021
Hi Sebastian,
you're supposed to provide full path to the executable file when using system command.
system("C:\Program Files\...\ Zebra.exe");
This might be a better way to do this as it provides more control over the process. You don't need to define Arguments and UseShellExecute properties in your case.
  1 comentario
Sebastian Caceres
Sebastian Caceres el 15 de Feb. de 2021
Hi Mario! Thanks it worked, and I will also be sure to check out the link you recommended!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Debugging and Analysis en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by