I need to create a Standalone Desktop App that creates a Word or PDF document
82 views (last 30 days)
Show older comments
Lander Azkarate Ormazabal
on 29 Oct 2024 at 9:23
Commented: Lander Azkarate Ormazabal
on 31 Oct 2024 at 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 Comments
Accepted Answer
Hitesh
on 30 Oct 2024 at 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 Comments
More Answers (0)
See Also
Categories
Find more on MATLAB Report Generator in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!