in reply to Can I save my document to html page?

Hmm, 'wdFormatHTML' is a constant in the enum 'WdSaveFormat', maybe you can do something like:
$Word->{'wdFormatHTML'} or
$Word->{'WdSaveFormat'}->{'wdFormatHTML'}

Failing all that, the value of 'wdFormatHTML' is 8 ;)

C.
*UNTESTED*

Replies are listed 'Best First'.
Re: Re: Can I save my document to html page?
by Anonymous Monk on Jan 21, 2003 at 13:52 UTC
    actually value of wdFormatText differs between Word97 and Word2000.

    That said, you will in trouble when using such constants everywhere!