Error in publishing

2 Ansichten (letzte 30 Tage)
Gurudatha Pai
Gurudatha Pai am 25 Okt. 2011
I use Matlab 7.12.0 R2011a, on a Windows XP SP3 box. I am trying to use the publish feature of Matlab to automatically create a Microsoft Office Word file with the results that I am dumping on the Matlab Command Window and other figures. I get the following error message.
??? Error using ==> saveas at 72
Invalid Simulink object specifier
Error in ==> mxdom2word at 149 doc.SaveAs(outputPath,wdFormatDocument);
Error in ==> publish at 183 mxdom2word(dom,outputAbsoluteFilename);
Error in ==> mdbpublish at 55 outputPath = publish(file, options);
??? Error using ==> open at 69 NAME must contain a single string.
The #69 of
open()
gets a empty string and hence the error. But when I looked closer into the code for
publish.m
and then into
mxdom2word.m
It seems to me that the culprit is the line #149 (in my file, I presume it will be same on yours too), specifically the line below
doc.SaveAs(outputPath,wdFormatDocument);
If I set a debug point at this line and look into the
doc
object (of type Interface.Microsoft_Word_14.0_Object_Library._Document), it does not have a
doc.SaveAs()
method. Seems to me like the run-time is somehow calling the default
SaveAs()
subroutine. I changed the code to
doc.SaveAs2()
and the whole thing runs fine.
Your comments, suggestions? Could you please tell me if my diagnosis is right? Is this behavior to be thought as a bug? or a programmer's mistake!
P.S: I use MS Office 2010
  1 Kommentar
Christie Dennis
Christie Dennis am 6 Jan. 2012
I get the same error when I try to publish to Word. Did you ever get a response to this bug?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ken Atwell
Ken Atwell am 6 Jan. 2012
Gurudatha, SaveAs works with earlier versions of Office, but Office 2010 needs "SaveAs2", as you have discovered. :) R2011b addresses this.
  1 Kommentar
Gurudatha Pai
Gurudatha Pai am 6 Jan. 2012
Thanks, that was good know.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by