Convert excel to asc (excel2asc,exceltoasc)

Home->Document Tools->Text Converter->CZ Document Converter COM only $260.00, convert excel to asc, excel2asc, exceltoasc, only $260.00

Read RegNow (our order processor) Privacy Statement! RegNow strives to ensure that you receive quality service, and that also means that the information you provide us is seen only by a select few here at RegNow.

CZ Document Converter COM for MS Word V1.0

About
CZ Document Converter COM is a 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. It is a batch office document converter that convert between doc, html, rtf, text, WordPerfect and Works for windows etc file format that that you can open in Microsoft Word. You can convert html to word, html to doc, html to rtf, text to doc, rtf to word and rtf to doc etc, you can convert a lot of files once time, saving your time! 

Furthermore, we provide some VB and DELPHI examples.  Although you may not be using Visual Basic and DELPHI, the approach for all development environments will be similar.

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.  convert
It offers an unconditional 30-day money-back guarantee, so do not hesitate, buy it now! only $29.95

Using this tool, you can convert excel to ami pro, excel to sam, excel to asc, excel to ans, excel to mcw.

Key Features
A. batch convert html to word, html to doc, html to rtf, text to doc, rtf to word and rtf to doc files quickly, also it convert 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 wpd, wordpretect, sam, amp pro, wri, write, works, wps.
B. support COM interface and command line arguments.
C. can add the files in subfolders to convert.
D. supports drag files and folders from your desktop.
E. fit to convert so much as over 1 million files in folder, you need not wait at all. 

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.

What's New In CZ Document Converter COM?
20/11/2002:
release CZ Document Converter COM V1.0 Build021120  support convert html to word, html to doc, html to rtf, text to doc, rtf to word and rtf to doc between office document(doc, rtf, html, text format and almost any other format that microsoft word will support),  beautiful GUI interface, support COM interface and command line run, convert the files in subfolders. 

Screenshots  Click the pic to see large screenshot

convert

Relative Keywords:excel to htm excel to html excel to pdf excel to text excel to txt asc to htm asc to html asc to text asc to txt asc to acrobat More Popular Keywords ...

Faq

Can CZ Document Converter COM support ASP?
No, CZ Document Converter COM do not support ASP.

How does it work?
After runing cz document converter, you can simply press the "add files" button or the "add folders" button, then select the files you want to convert to batch conversion list with ctrl or shift key, and press the "convert" button, in a short time you will have finished conversion!

How to use command line run?
usage:  
czdocvt <file path> </f:<dest file format code>> [/d:<dest folder>] [/s] [/h] 

file path  the path and files want to be converted, this parameter must exist.
for example, d:\*.doc
/f:<dest file format code>destination file format code, this parameter must exist.
the format code list is following:
0    word doc file
1    dot file
2    text file
3    text file with line break
4    dos text file
5    dos text file with line break
6    rtf file
7    unicode or encode text file
8    html file
>8   other file format your office word can support, you can find it in CZ Document Converter COM's gui, please see following red frame.
convert

for example, /f:8, express you want convert documents to html files
 /d:<dest folder>destination folder
for example, /d:d:\test, express file convert result will be saved to d:\test folder
/sinclude the files in subfolders
/hhide the CZ Document Converter COM gui while running

example:  
convert all word doc files in folder d:\source to html files, destination folder is d:\dest
            czdocvt d:\source\*.doc /f:8 /d:d:\dest /s
Please notice, if your file path include space, you must add quotation marks beside file path, like:
            czdocvt "d:\My Documents\*.doc" /f:8 "/d:e:\My Documents" /s 

What's CZ Document Converter COM Properties?
Visible Property
Indicates whether the dialog of CZ Document Converter 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 = oczdocumentconvertercom.Visible
oczdocumentconvertercom.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 a CZ Document Converter COM object to false after initializing COM:
    dim ConvertCom as object
    set ConvertCom=CreateObject("czdocumentconverter.ConvertApplication")
    ConvertCom.Visible=true
DELPHI Example
The following DELPHI example sets the Visible property of a CZ Document Converter COM object to false after initializing COM:
    var ConvertCom: Variant;
    ConvertCom := CreateOleObject('czdocumentconverter.ConvertApplication');
    ConvertCom.Visible:=true;

What's CZ Document Converter COM Methods?
ConvertFolder Method
Convert word doc files in folder to pdf files.
Syntax
strValue = oczdocumentconvertercom.ConvertFolder(SrcFilePath,DestFilePath,DestFileFormat,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.
DestFileFormat: Integer specifying destination file format code, the format code list is following:

    0    doc file
1    dot file
2    text file
3    text file with line break
4    dos text file
5    dos text file with line break
6    rtf file
7    unicode or encode text file
8    html file
>8   other file format your office word can support, you can find it in CZ Document Converter COM's gui, please see following red frame.
convert

for example, 8, express you want convert documents to html files

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:\*.htm" to word doc file, not include file of sub-folder, the conversion result is in "d:\":
    dim ConvertCom as object
    dim sResult as string
    set ConvertCom=CreateObject("czdocumentconverter.ConvertApplication")
    ConvertCom.Visible=true
    sResult=ConvertCom.ConvertFolder("c:\*.htm","d:\",0,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:\*.htm" to word doc file, not include file of sub-folder, the conversion result is in "d:\":
    var ConvertCom: Variant;
    sResult:string;
    ConvertCom := CreateOleObject('czdocumentconverter.ConvertApplication');
    ConvertCom.Visible:=true;
    sResult:=ConvertCom.ConvertFolder('c:\*.htm','d:\',0,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('czdocumentconverter.ConvertApplication');
2). COM Property
  Example:
    ConvertCom.Visible:=true;
3). COM Method
  Example:
    sResult:=ConvertCom.ConvertFolder('c:\*.htm','d:\',0,false,'');
4). Close COM
  Example:
    ConvertCom:=UnAssigned;
Please click here to download the complete delphi 5.0 example.

How to use COM component/object in VB?
1). COM Init
  Example:
  set ConvertCom=CreateObject("czdocumentconverter.ConvertApplication")
2). COM Property
  Example:
    ConvertCom.Visible=true
3). Com Method
  Example:
    result=ConvertCom.ConvertFolder("c:\*.htm","d:\",0,false,"")
4). Close COM
  Example:
    set ConvertCom=nothing

Does this converter convert quickly?
Yes, CZ Document Converter COM can convert between word doc, html, rtf, text files very quickly, you can download the Free Demo and test the converting speed.

Does this converter support word xp?
Yes, CZ Document Converter COM supports word xp.

Is there a batch process available?
Yes. CZ Document Converter COM can support batch conversion between doc, html, rtf, text files, so much as over 1500 files. 

Can this converter convert many pages in a document file?
Yes. CZ Document Converter COM can convert very big document file, so much as over 5000 pages in a document file.

I am trying to use your Document Converter product (cz-docvt) to convert HTML to RTF via the command line, but can find no way to tell it the source document type; it seems to just copy the HTML and do no translating.
You need not to know the soure file type, and you only set the destination file format, please add /f:6 to your command line, then you can get rtf result.
fox example: convert all htm files include sub-folder in folder d:\source to rtf files, destination folder is d:\dest
the command line can be : czdocvt d:\source\*.htm /f:6 /d:d:\dest /s

We are evaluating your product for our software product. We would like to distribute your product with our product if it fits to our requirement. We are interested knowing price structure for distribution license, where we can bundle your product with our product.
You can choose to pay for each copy, or pay for Developer License. After you order the developer license, there is not any limit for the developer license, you can bundle our product to your application, then redistribute your application to anyone, any times, and anytime.
The fee of Developer License is $1560, and you can order it from convert

How we can redistribute your product with our product? If it is possible, What file we need to insert in our setup?
You only add cz-docvt.exe and register.dat to your setup, and add command to run cz-docvt.exe with Parameters"/regserver" while installing, and add command to run cz-docvt.exe with Parameters"/unregserver" while uninstalling.

I have more questions - who should I write to?
Please send your additional questions to support@convertzone.com.

Relative Products