| CZ-Xls2Htm COM for MS Excel V1.0 |
|
About
CZ-Xls2Htm 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, and can watch source file folder and convert new
uploading ms excel xls documents to html files automatically.
and you can convert a lot of excel xls files on the fly to html
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 Excel xls files? |
| You can use "Excel
Password Recovery", it can decrypt protected MS Excel xls
files, then you can use our product to convert the
decrypt MS Excel xls 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 microsoft excel xls documents to html files
quickly, and you also can convert xls, excel, text, txt, csv,
lotus 1-2-3, wk1, wk2, wk3, quattropro, wq1, works, wks, dbase,
dbf, xlm, xla, xlc, xlw, xlt, xll, slk, sylk, dif, xlb to html,
htm.
B. can watch source file folder and convert new uploading ms
excel xls documents to html files automatically. While your
user upload excel xls documents to your website, then this
folder watcher can automatically convert them into html
format.
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.
G. can merge all html page to one page and delete the
xxxx.files image Dir.
Manual Convert

Folder Watcher

Can this product support ASP?
No, this product 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
Excel xls documents that are uploaded to the website to html
files.
How to install it?
The install is very easy, please see the following
step:
1. you only run czXls2Htm.exe, click "yes" button while
displaying the dialog with "This will install cz-Xls2Htm, do
you wish continue?"
2. click "next" button while displaying the dialog with
"welcome to the ...."
3. select destination directory and click "next" button while
displaying the dialog with "selection dest..."
4. click "next" button while displaying the dialog with
"selection start..."
5. click "install" button while displaying the dialog with
"ready to install"
6. click "finish" button while install finish.
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-Xls2Htm <file path> [/d:dest
path] [/s] [/h] [/?]
<file path>
the path and files want to
be converted, for example, d:\*.xls
[/d:dest path] the
dest file path
/s
include the files in subfolders
/h
hide the CZ-Xls2Htm COM gui while running
/?
show help
example 1:
convert all excel xls files in disk d to html files, the
dest path is d:\dest
CZ-Xls2Htm d:\*.xls /d:d:\dest /s
example 2:
convert all excel xls files in d:\ dir to html files and hide
the CZ-Xls2Htm COM gui
CZ-Xls2Htm d:\*.xls /h
What's CZ-Xls2Htm COM Properties?
Visible Property
Indicates whether the dialog of cz-Xls2Htm 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 = oCZXls2HtmCOM.Visible
oCZXls2HtmCOM.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-Xls2Htm COM object to false after initializing
COM:
dim ConvertCom as object
set
ConvertCom=CreateObject("czxls2htm.ConvertApplication")
ConvertCom.Visible=true
DELPHI Example
The following DELPHI example sets the Visible property of
an CZXls2HtmCOM object to false after initializing
COM:
var ConvertCom: Variant;
ConvertCom :=
CreateOleObject('czxls2htm.ConvertApplication');
ConvertCom.Visible:=true;
What's CZ-Xls2Htm COM Methods?
ConvertFolder Method
Convert doc files in folder to html files.
Syntax
strValue =
oCZXls2HtmCOM.ConvertFolder(SrcFilePath,DestFilePath,IsSubFolder,BSTR
Option) Parameters
SrcFilePath
String specifying source file path, for example
"c:\*.xls"
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:\*.xls" to html file,
not include file of sub-folder, the conversion result is in
"d:\":
dim ConvertCom as object
dim sResult as string
set
ConvertCom=CreateObject("czxls2htm.ConvertApplication")
ConvertCom.Visible=true
sResult=ConvertCom.ConvertFolder("c:\*.xls","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:\*.xls" to html
file, not include file of sub-folder, the conversion result is
in "d:\":
var ConvertCom: Variant;
sResult:string;
ConvertCom :=
CreateOleObject('czxls2htm.ConvertApplication');
ConvertCom.Visible:=true;
sResult:=ConvertCom.ConvertFolder('c:\*.xls','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('czxls2htm.ConvertApplication');
2. COM Property
Example:
ConvertCom.Visible:=true;
3. COM Method
Example:
sResult:=ConvertCom.ConvertFolder('c:\*.xls','d:\',false,'');
4. Close COM
Example:
ConvertCom:=UnAssigned;
How to use COM component/object in VB?
1. COM Init
Example:
set
ConvertCom=CreateObject("czxls2htm.ConvertApplication")
2. COM Property
Example:
ConvertCom.Visible=true
3. Com Method
Example:
result=ConvertCom.ConvertFolder("c:\*.xls","d:\",false,"")
4. Close COM
Example:
set ConvertCom=nothing
User Comments
"Dear CONVERTZONE, I had used your
excellent soft-ware "CZ-xls2htm" and it works fantastically
brilliant! No it is better than this! I prefer this to
Microsoft Lotus. I am considering to buy 4,000 (THOUSAND)
licenses for my friends and relations."
Brennan Till (Asha Mandah Oaks Ltd.)
"Have received, installed and
converted a 250 page PDF report to xls ..Works like a
dream"
Peter Hicks
"We have purchased cz-xls2pdf v1.0.
It is great for batch converting excel documents to pdf."
Velma R. Lakins
"Thanks, received and it works awesome. Just finished
converting 51,000 XLS files into 51,000 TXT files (12GB) in
just a couple hours with no problems at all. Thanks again!
:)"
Robert Soloway (NIM Corporation)
"now I'm almost sure I want 2 of your great
convertors-doc2htm and xls2htm, they work flawlely!"
Michael Lugassy
"I am a user of your CZ-Ppt2Pdf and am very happy with the
application. I am considering purchasing CZ-Xls2Txt"
Mike Salzman (Synergy Medical Communications)
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 Excel 2000 or higher
for windows.
Thousands of companies had chosen our products!
Order Now! - Immediate online delivery available!
Allows to convert Excel Files to Internet Explorer
| Additional Information: CZ-xls2htm COM | ||
|
There is no any payment risk : 30-Day money-back unconditional guarantee! |
|
|
|
$219.00 |
||