I need to create a Standalone Desktop App that creates a Word or PDF document
82 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lander Azkarate Ormazabal
el 29 de Oct. de 2024 a las 9:23
Comentada: Lander Azkarate Ormazabal
el 31 de Oct. de 2024 a las 9:02
Hello,
I have created an App with Matlab App Designer wich nedds to create a ".docx" or ".pdf" document in order to summary and conclude the process the program did. Even if I reach this goal using the App Designer, when I create a Standalone Desktop App, it stops generating the file. How could I do it?
Thanks.
3 comentarios
Respuesta aceptada
Hitesh
el 30 de Oct. de 2024 a las 13:16
Hi Lander,
When executing the standalone application generated from "Sum_Word.mlapp" file you provided, it resulted in the error "Unable to check out a Report Generator license". This error was preventing the .docx file from being generated. To verify your license access, you can execute the following command:
license('test', 'MATLAB_Report_Generator')
To avoid this issue, you need to use the "actxserver" function to create a COM server for Microsoft Word. This approach does not require a license to generate .docx or .pdf files when running the standalone application, as it creates a local OLE Automation server. I revised the "KalkulatuButtonPushed" function in the MATLAB App Designer and then created the standalone application, which successfully generated the .docx file and wrote the solution into it. I've attached the revised "Sum_Word.mlapp" file for your reference.
For more information on "actxserver" function, refer to the below MATLAB Documentation:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre MATLAB Report Generator en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!