I need to create a Standalone Desktop App that creates a Word or PDF document

82 次查看(过去 30 天)
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 个评论
Lander Azkarate Ormazabal
Lander Azkarate Ormazabal 2024-10-29,13:27
This is a simplified version I did, where I just sum two variables and write the answer in a ".docx" document. As I said before, it creates correctly the file when it is run in the App Designer, but stops working when you transfer it to a Standalone Desktop Application.

请先登录,再进行评论。

采纳的回答

Hitesh
Hitesh 2024-10-30,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 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Report Generator 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by