CZ-Doc2Htm COM for MS Word V2.0
What people been saying?
"Thank you very much for your product, PDF to Word/Doc/Rtf conversion program. I just tried it, within 5 minutes of going to your site, and I must say it is working very well so far. It should get me out of a deadline for work. Thankfully,"
S Ramos from Texas  2004-10-11

About
CZ-Doc2Htm COM is a COM component/object designed to assist you, the developer, to quickly add a document conversion utility to your application. It can be called from VB, VC, DELPHI, you can use it to convert doc to html, rtf to html and text to html, and can watch source file folder and convert new uploading ms word, rtf or text documents to html files automatically. you can convert a lot of documents supported by microsoft office word (text, rtf, doc , wordprefect and more) to html once time, saving your time!

How to convert protected MS Word Doc files?
You can use "Word Password Recovery", it can decrypt protected MS Word Doc files, then you can use our product to convert the decrypt MS Word Doc files. 
It offers an unconditional 30-day money-back guarantee, so do not hesitate, buy it now! only $29.95

Key Features
A. batch convert word to html, doc to html, text to html and rtf to html files quickly, also it supports wpd, wordpretect, sam, amp pro, lotus 1-2-3, wk1, wk2, wk3, xls, excel, xlw, asc, olk, outlook, scd, schedule, ans, wri, write, works, wps, pad to html.
B. can watch source file folder and convert new uploading ms word doc, rtf or text documents to html files automatically. While your user upload word documents to your website, then this folder watcher can automatically convert them into a viewable html format.
C. preserves original document layout, include images and tables. 
D. support COM interface and command line arguments.
E. can add the files in subfolders to convert.
F. supports drag files and folders from your desktop. 
G. can create run log file. 

Faq

Can CZ-Doc2Htm COM support ASP?
No, CZ-Doc2Htm COM do not support ASP, but you can use the folder watcher function that can convert new files in source file path to dest file path while new files are copied to source file path, so you can use this function to convert your word documents that are uploaded to the website to html files.

How does "Manual Convert" work?
Please click "Manual Convert" tab sheet, you can simply press the "add files" button, then select the files to batch conversion list with ctrl or shift key, or click the "add folders" button to select the file folder. finally press the "convert" button, in a short time you will have finished conversion!

How does "Folder Watcher" work?
Please click "Folder Watcher" tab sheet, then click "Add Watch" button, and show a "Add Watch" dialog, and input "Source File Path", "Dest File Path" and "File Filter", press "OK" button, you will add a file watch to folder watcher list. finally press "Start Watch" button, while the word documents are copied to the source path, then this folder watcher can automatically convert them into viewable html format of dest file path.

How to use command line run?
usage:  
cz-Doc2Htm <file path> [/d:dest path] [/s] [/h] [/?]
       <
file path>        the path and files want to be converted, for example, d:\*.doc
      [/d:dest path] the dest file path
        /s                         include the files in subfolders
        /h                          hide the CZ-Doc2Htm COM gui while running
   
    /?                          show help
example 1:  
convert all word doc files in disk d to html files, the dest path is d:\dest 
            cz-Doc2Htm d:\*.doc /d:d:\dest /s
example 2:  
convert all word doc files in d:\ dir to html files and hide the CZ-Doc2Htm COM gui
           cz-Doc2Htm d:\*.doc /h 

What's CZ-Doc2Htm COM Properties?
Visible Property
Indicates whether the dialog of CZ-Doc2Htm COM show. When set to true, the dialog show, otherwise the dialog hide. You can use Visible property to check the status of the dialog.
Syntax
boolValue = oczdoc2htmCOM.Visible
oczdoc2htmCOM.Visible = boolValue

Remarks
Boolean. The property is read/write. Returns true if the dialog show, or false if not. Default is true.
VB Example
The following VB example sets the Visible property of an CZ-Doc2Htm COM object to false after initializing COM:
    dim ConvertCom as object
    set ConvertCom=CreateObject("czdoc2htm.ConvertApplication")
    ConvertCom.Visible=true
DELPHI Example
The following DELPHI example sets the Visible property of an czdoc2htmCOM object to false after initializing COM:
    var ConvertCom: Variant;
    ConvertCom := CreateOleObject('czdoc2htm.ConvertApplication');
    ConvertCom.Visible:=true;

What's CZ-Doc2Htm COM Methods?
ConvertFolder Method
Convert doc files in folder to html files.
Syntax
strValue = oczdoc2htmCOM.ConvertFolder(SrcFilePath,DestFilePath,IsSubFolder,BSTR Option)
Parameters
SrcFilePath
  String specifying source file path, for example "c:\*.doc"
DestFilePath
  String specifying destination file path, if blank then convert to current path.
IsSubFolder
  Boolean. Flag that indicates whether convert file of sub folder. If true, convert file of sub folder. If false, do not convert file of sub folder.
Option
  String, reserve.
Returns
  String, return the conversion error reason, if return is blank, then convert successfully, otherwise is error reason.
VB Example
The following VB example convert "c:\*.doc" word files to html files, not include file of sub-folder, the conversion result is in "d:\":
    dim ConvertCom as object
    dim sResult as string
    set ConvertCom=CreateObject("czdoc2htm.ConvertApplication")
    ConvertCom.Visible=true
    sResult=ConvertCom.ConvertFolder("c:\*.doc","d:\",false,"")
    if sResult="" then
        msgbox "Convert OK!"
    else
        msgbox "Convert Failure, error reason is" & sResult
    end if
    set ConvertCom=nothing
DELPHI Example
The following DELPHI example convert "c:\*.doc" word files to html files, not include file of sub-folder, the conversion result is in "d:\":
    var ConvertCom: Variant;
    sResult:string;
    ConvertCom := CreateOleObject('czdoc2htm.ConvertApplication');
    ConvertCom.Visible:=true;
    sResult:=ConvertCom.ConvertFolder('c:\*.doc','d:\',false,'');
    if sResult='' then
        showmessage('Convert OK!')
    else
        showmessage('Convert failure, error reason is ' + sResult);
    ConvertCom:=UnAssigned;

How to use COM component/object in DELPHI?
1. COM Init
  Example:
    var ConvertCom: Variant;
    ConvertCom := CreateOleObject('czdoc2htm.ConvertApplication');
2. COM Property
  Example:
    ConvertCom.Visible:=true;
3. COM Method
  Example:
    sResult:=ConvertCom.ConvertFolder('c:\*.doc','d:\',false,'');
4. Close COM
  Example:
    ConvertCom:=UnAssigned;
How to use COM component/object in VB?
1. COM Init
  Example:
  set ConvertCom=CreateObject("czdoc2htm.ConvertApplication")
2. COM Property
  Example:
    ConvertCom.Visible=true
3. Com Method
  Example:
    result=ConvertCom.ConvertFolder("c:\*.doc","d:\",false,"")
4. Close COM
  Example:
    set ConvertCom=nothing

System Requirements
1.You will need a Pentium 150 PC or higher, 16MB RAM or more. 
2. The operating system should be Win95, Win98, Win2000, WinNT 4.0, WinME, WinXp, Win2003.
3.Of course, you must install Microsoft Word 95 or higher for windows

User Comments

"Thank you very much for your product, PDF to Word/Doc/Rtf conversion program. I just tried it, within 5 minutes of going to your site, and I must say it is working very well so far. It should get me out of a deadline for work. Thankfully,"
S Ramos from Texas 

"I am using the doc2pdf com trial version in an application I am building. It is very good and I think we will buy it."
Chris

"I have had some dialog with your support and they have been very helpful. I'm now writing on a quotation in which your tool Doc2htm is one part. If the customer accept my quotation I will need 50-300 of this tool (1 license)..."
TEK-en Mallar

"...btw, I saw your software(cz-doc2pdf) in full action this week and it really helps our work a lot! Best Regards."
Petteri Tuominen (Nokia Mobile Phones)

"Thank you so much. It was czdoc2txt that I purchased and it is working fine now. If I have any other problems I will let you know. Thank you so much for your quick response."
Summer Abdelghani  (Manpower Inc. - MIS Dept.) 

"We recently purchased a copy of the latest version of CZ-Doc2Pdf. This is a fantastic piece of software that will be very helpful to us...."
David Paige

"I recently downloaded DOC2PDF and found that works great for batch conversion to PDF, the folder watcher is great for Web Publishing too."
Jeffrey LeBlanc

"That works perfectly. The product cz-doc2pdf is installed and registration procedure is ok. Thanks you for your constant reactivity."
Jose MARTINS

"now I'm almost sure I want 2 of your great convertors-doc2htm and xls2htm, they work flawlely!"
Michael Lugassy

"I have just installed CZ-Doc2Pdf. It's brilliant, it is rattling through the files at one per minute. Fantastic."
Peter Philippsohn ( Appcon)

"I ordered cz-Doc2Pdf yesterday, got it this morning and the lab director likes the product so much, we'd like to order another site license for her computer as well."
Jonathan Stein

"I download the CZ-Doc2Pdf.exe and it seems to work perfectly for what I want to do. Converts rtf to pdf very fast and accurately!!"
Clay Laird

"Hi Support, Been using CZ Document Converter 1.5 and like it, Cheers! Owen"
Owen Brandt

"thank you for this very useful program(cz-doc2pdf), it works very fine!"
Michael Loos 11-06-2002

"I'm using CZ Document Converter 1.5 trial. It works great, I'd like to buy it"
Brad 11-04-2002

"I am currently evaluating the product and find that cz-doc2htm is very powerful."
Alan Lee 10-29-2002

"I tried your software CZ-Doc2Htm and it works great.  I plan to buy at least one more copy (maybe tomorrow) for a consultant who is working with us."
Jack Mayfield (Mayfield Publishing Company)

"We buy today your very good tool CZ-Doc2Pdf, congratulation!!!"
christoph

"We produce DOS text report files and are trying to find an easy way to convert these files into PDF format. I tried Cz-doc2pdf and it seems to do exactly what we do manually. It would great to automate the process with your program."
Mark Koepke  (Claymore Consulting Group Ltd.)

System Requirements 1.You will need a Pentium 150 PC or higher, 16MB RAM or more. 2. The operating system should be Win95, Win98, Win2000, WinNT 4.0, WinME, WinXp, Win2003. 3.Of course, you must install Microsoft Word 95 or higher for windows

Order

Thousands of companies had chosen our products!

Order Now! - Immediate online delivery available!

Additional Information: CZ-Doc2htm Com

There is no any payment risk : 30-Day money-back unconditional guarantee!

Buy Online

bbuy.gif (1156 bytes)

$219.00



More Batch Software      More Converting Software

 

Home

Excel Spreadsheets