views:

1049

answers:

10

I have a piece of software that currently packages an MS Word file as the user guide/help. I would like to make this into either a pdf or a chm file. I do not wish to re-write the help or user guide. I did not see anything that is exactly what I need. i don't want to pay for it (I'd rather continue with Word Doc) and I wantt o just be able to edit in MS Word and then convert when i am done. Releasing the html output of doing "save as html" is not an option - i need just one file.

+1  A: 

If you absolutely have to keep only one file then I would go with PDF, since it's pretty ubiquitous at this point. I can't remember the last time I was on a system that couldn't open a PDF. Actually, I can, but that's beside the point.

One other option is to just keep it as a Word document. Most people using Windows have Word installed, and users on Mac and Linux will probably know how to convert the file to something they can read (if it's even necessary to convert it).

Bill the Lizard
+1  A: 

Print to pdf. Google "free pdf convert" for free virtual printer drivers for Windows that generate pdf; some are smart enough to convert MS Word formats like headings and TOC.

On Mac OS X, anything that can be printed can be converted to PDF from the standard print dialog.

Doug Currie
I tried that - I must have gotten one that doesn't work. I ended up with an xps file... not what i expected.
Tim
+1  A: 

The addin from Microsoft to save as PDF in Word 2007 is here:

http://www.microsoft.com/downloads/details.aspx?FamilyId=4D951911-3E7E-4AE6-B059-A2E79ED87041&displaylang=en

Also, you could choose to save as *.mhtml (single file web archive images & all in one file. Opens in IE.)

Booji Boy
thanks - I will try those
Tim
+1  A: 

http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=doctools&ReleaseId=9955

HTH

plan9assembler
Thanks. that looks like it would work, but way too many steps for me to deal with that. I just wanted a quick way to do help/docs. chm looks like a real pain in the butt.
Tim
chm is deprecated, you should check "sandcastle", "MAML"
plan9assembler
+3  A: 

If you're using Word 2007, then download the Microsoft add-in that allows you to export to PDF and XPS files.

If using an earlier version of Word, then I'd recommend PDFCreator - an open source printer driver for Windows. It gives you a printer that saves as PDF files, and works with any application. Works great, I've used it for years.

Bevan
+1  A: 

Or try out Universal Document Converter
Edit: A simple google search throws up this - a direct word to chm converter, as one of the links.

trex279
the chm converter is, alas, not free...
Tim
+1  A: 

For CHM, you might find some answers in What are good tools for creating compiled HTML help files (.chm)? .

Windows Help files - what are the options? might interest you, too.

PhiLho
Yes, I looked at those questions. They do not address my issue from what I could see. None of those products were useful to me.
Tim
A: 

You could try exporting to the RTF or rich text format. RTF is able to be read by computer loaded with Windows, OSX, or Linux with Gnome or KDE installed.

epochwolf
I should have also stated one of the reasons I wanted pdf or chm is that they can't be modified by users. Well - at least not simply like msword.
Tim
In that case just generate a PDF.
epochwolf
+1  A: 

try chmprocessor: http://chmprocessor.sf.net

thanks. i will try it
Tim
A: 

I am going to go with PDF and this solution as I can call it from the command line during my build. I will maintain a Word doc in my version control system and make it a pdf as part of a release.

http://www.oooforum.org/forum/viewtopic.phtml?t=3772&highlight=pdf+form

or

http://www.suodenjoki.dk/us/productions/articles/word2pdf.htm

Tim