|
Please excuse grammar, text by non-English speaker.
CZ Doc to Html COM (Convert Word to HTML) 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, you can convert a lot of documents supported by Microsoft office word (text, rtf, doc , WordPerfect and more) to html once time, saving your time!
CZ Doc to Html 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 , WordPerfect and more) to html once time, saving your time!
A. batch convert word to html, doc to html, text to html and rtf to
html files quickly.
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.
1.You will need a Pentium 150 PC or higher, 16MB RAM or more.
2.The operating system should be Windows 95, Windows 98, Windows 2000, Windows NT
4.0, or Windows ME or above.
3.Of course, you must install Microsoft Word 95 or higher for windows
What's New In CZ Doc to Html COM?
Release CZ Doc to Html COM V2.0 Build030605, add folder watcher that watch source file path 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.
Release CZ Doc to Html COM V2.0 Build021029 add following function:
A. batch convert word to html, doc to html, text to html and rtf to html files quickly.
B. preserves original document layout, include images and tables.
C. support COM interface and command line arguments.
D. can add the files in subfolders to convert.
E. supports drag files and folders from your desktop.
F. can create run log file.
Manual Convert | Folder Watcher |
Can CZ Doc to Html COM support ASP?
No, CZ Doc to Html 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 Doc to Html 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 Doc to Html
COM gui
cz-Doc2Htm d:\*.doc
/h
What's CZ Doc to Html COM Properties?
Visible Property
Indicates whether the dialog of CZ Doc to Html 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 Doc to Html
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 Doc to Html 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
Document to HTML Converter COM $219.00 Unconditional 30-day money-back guarantee
Order Type: |
|
DEMO CONVERTERS: All Office Converter Pro | Doc Xls PPT Txt To Pdf Converter | Easy Word to Pdf Converter | Excel/Xls to Image Jpg/Jpeg Bmp Tiff Png Converter | Excel/Xls to Pdf Converter | Power Word to Pdf Converter | PowerPoint/PPT to Image Jpg/Jpeg Bmp Png Converter | PowerPoint/PPT to Pdf Converter | Quick Word to Pdf Converter | Word Excel PowerPoint to Pdf Converter | Word/Doc Excel/Xls PowerPoint/PPT To Text Converter | Word/Doc Excel/Xls to Htm Html Converter | Word/Doc Txt to Image Jpg/Jpeg Bmp Tiff Png Converter | Word/Doc to Pdf Converter & Creator Try out; Convert Mysql to Oracle | Convert Mysql to Access | Convert Oracle to Mysql | Convert MSSQL to Oracle | Convert Oracle to Access | More Converters Try out; All to Image Jpg/Jpeg Bmp Tiff Png Converter | Image TIFF Jpeg Text to Pdf Converter Try out; Htm/Html to Image Jpg/Jpeg Converter Try out; Text to Pdf Converter & Creator
See Also: Batch Document Converter & Conversion Software Index or, All Software
Instant Download and Money Back Guarantee on Most Software
Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!
Microsoft � and Microsoft Excel � are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft
Some of our more popular products are below...
Convert Excel Spreadsheets To Webpages | Trading In Excel | Construction Estimators | Finance Templates & Add-ins Bundle | Code-VBA | Smart-VBA | Print-VBA | Excel Data Manipulation & Analysis | Convert MS Office Applications To...... | Analyzer Excel | Downloader Excel
| MSSQL Migration
Toolkit |
Monte Carlo Add-in |
Excel
Costing Templates