Convert Word 2007 documnet to HTML

P

Progress

Hi i have created a Word dpcumnet which has tables, pictures and so on.
Now i want to convert it inot HTMl format

Please tell me how can i do this...
 
C

Cindy M.

Hi Progress,
i have created a Word dpcumnet which has tables, pictures and so on.
Now i want to convert it inot HTMl format

Please tell me how can i do this...

Open the document in Word (Documents.Open method) then use the
Document.SaveAs method to save to the HTML file format by specifying
the wdFormatHTML for the Format parameter of the method.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question
or reply in the newsgroup and not by e-mail :)
 
J

JMiguez

Hi Progress,


Actually the best way to approach this is not to make anything in
word, but
to do it yourself from scratch.
The best way to learn how to make a webpage is to view the source of a
webpage
that you like or that is close to the one you are building. Then apply
this
to C# code or to any other code you'd like.

Here is a guide for the Bare Bones HTML guide. This guide has been
around for more than 15 years.
http://www.onlineinstitute.com/cgi/barebone.html

Here is the WWW consortium. In case you need more information.
http://www.w3.org/TR/REC-html40/
 
C

CSC

I have to generate special HTML output for Word documents from scratch. How
do I access the following items: "symbols" and "footnotes with custom mark"?

I am using C# and VSTO2005, how can I access a symbol in
paragraphRange.characters?
I can search a footnote from paragraphRange.footnotes, but how can I
identify its custom mark? Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top