Clear Filters
Clear Filters

Getting an error Server creation failed. Invalid ProgID 'word.application'

42 views (last 30 days)
by using the following code, i.m trying to convert the word file in to pdf on server. Sometime it works but sometime it throw an error.
Error : Server creation failed. Invalid ProgID 'word.application'
What could be the reason behind that.
Code:
word_app = actxserver('word.application');
word_Doc = word_app.Documents;
word_File = word_Doc.Open(file_path_docx);
word_File.SaveAs2(file_path_pdf,17);
word_Doc.Close;
word_app.Quit();

Answers (1)

Manoj Mirge
Manoj Mirge on 19 Apr 2023
Hi Vilas,
There are several reasons why this issue can occur. If you are getting this error, it means MATLAB is not able to connect to Word due to some issue on your system. It is not a MATLAB error rather a Windows produced error.
Please see the below attached Matlab Answers thread for troubleshooting your issue:
I highly encourage you to try all workarounds mentioned in above Matlab Answers thread.
Hope this helps.

Categories

Find more on MATLAB in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!