CZ-Ppt2Htm For MS Powerpoint 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-Ppt2Htm is a batch html converter that convert microsoft powerpoint ppt to html files, and can watch source file folder and convert new uploading ms powerpoint ppt documents to html files automatically. you can convert a lot of ppt files once time, saving your time!

Key Features
A. batch convert microsoft powerpoint ppt to html at one time.
B. can watch source file folder and convert new uploading ms powerpoint documents to html files automatically. while your user upload powerpoint documents to your website, then this folder watcher can automatically convert them into a viewable 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.

What's New In CZ-Ppt2Htm?
2004-10-14 release CZ-Ppt2Htm V2.0 Build041014, add COM interface.
2003-06-07 release CZ-Ppt2Htm V2.0 Build030607, add "merge all html page to one page" conversion feature, thanks for Michael Lugassy's advice.
2003-03-11 release CZ-Ppt2Htm V2.0 build 030311,
canwatch source file folder and convert new uploading ms powerpoint documents to html files automatically.
2002-10-02 release CZ-Ppt2Htm V1.0, have following function: A. batch convert microsoft powerpoint ppt to html at one time. B. support command line arguments. C. can add the files in subfolders to convert. D. supports drag files and folders from your desktop. E. can create run log file.

Screenshots

Manual Convert

ppt to htm, convert ppt to htm, ppt2htm, ppttohtm, only $120.00

Folder Watcher

ppt to htm, convert ppt to htm, ppt2htm, ppttohtm, only $120.00

Faq
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-Ppt2Htm <file path> [/d:dest path] [/s] [/h] [/?]
       <
file path>        the path and files want to be converted, for example, d:\*.ppt
      [/d:dest path]  the dest file path
        /s                         include the files in subfolders
        /h                         hide the CZ-Ppt2Htm gui while running
   
    /?                         show help
example 1:  
convert all powerpoint ppt files in disk d to html files, the dest path is d:\dest 
            CZ-Ppt2Htm d:\*.ppt /d:d:\dest /s
example 2:  
convert all powerpoint ppt files in d:\ dir to html files and hide the CZ-Ppt2Htm gui
           CZ-Ppt2Htm d:\*.ppt /h

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

What's CZ-Ppt2Htm COM Methods?
ConvertFolder Method
Convert doc files in folder to html files.
Syntax
strValue = oCZPpt2HtmCOM.ConvertFolder(SrcFilePath,DestFilePath,IsSubFolder,BSTR Option)
Parameters
SrcFilePath
  String specifying source file path, for example "c:\*.ppt"
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:\*.ppt" 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("czPpt2Htm.ConvertApplication")
    ConvertCom.Visible=true
    sResult=ConvertCom.ConvertFolder("c:\*.ppt","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:\*.ppt" to html file, not include file of sub-folder, the conversion result is in "d:\":
    var ConvertCom: Variant;
    sResult:string;
    ConvertCom := CreateOleObject('czPpt2Htm.ConvertApplication');
    ConvertCom.Visible:=true;
    sResult:=ConvertCom.ConvertFolder('c:\*.ppt','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('czPpt2Htm.ConvertApplication');
2. COM Property
  Example:
    ConvertCom.Visible:=true;
3. COM Method
  Example:
    sResult:=ConvertCom.ConvertFolder('c:\*.ppt','d:\',false,'');
4. Close COM
  Example:
    ConvertCom:=UnAssigned;

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

 

User Comments

"I just bought the ppt2htm version. Thank you very much for this, I hope you continue to improve and enhance this product (and other convertzone products) - please let me know of new updates - I'll test every upgrade and throw some ideas. Thank you again."
Michael 

"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.You must install Microsoft PowerPoint 2000 or higher for windows.

Order

Thousands of companies had chosen our products!

Order Now! - Immediate online delivery available!

Allows to convert MS Power Point Presentations to Internet Explorer

Additional Information: CZ-Ppt2htm

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

Buy Online

bbuy.gif (1156 bytes)

$120.00



More Batch Software      More Converting Software

Home

Excel Spreadsheets