Click here to Skip to main content
15,878,809 members
Articles / Programming Languages / Visual Basic
Article

liteWait PowerPoint to HTML Converter

Rate me:
Please Sign up or sign in to vote.
3.50/5 (6 votes)
25 Oct 20021 min read 145.7K   1.5K   33   14
Scans a target directory for Microsoft PowerPoint presentations and automatically convert them to HTML to reduce network traffic and to allow for presentation previewing without downloading the entire PowerPoint file.

Sample Image - liteWait.jpg

Introduction

This is a little app that I wrote for a client that has a number of PowerPoint presentations in their portal's document library. The problem with the presentations is that they are often fairly large especially for the users that were hitting the site through a 56k modem. The application scans a particular directory and it's subdirectories for Microsoft PowerPoint files (.ppt) and then uses the COM objects for PowerPoint to open the presentation and do a Save As HTML. We then modified the portal's document to have 2 links for each presentation, one that links to the PowerPoint file and one that links to the HTML version.

Form1.vb

This form initializes the app and is hidden right away only showing in the system tray. Further documentation is within the code.

SettingsForm.vb

This form is shown when the user right clicks the system tray icon and chooses Settings.... It will read the settings.xml file to populate the form. When the user modifies the entries it will then save the values back to the XML file. The settings are:

  • Scan Directory - The directory that will be crawled for PowerPoint files.
  • Scan Interval - The length of time in minutes between crawls.
  • HTML Directory - Where the PowerPoint files that are converted to HTML will be saved.

Some cool things in the app besides the HTML conversion shows intermediate and beginner programmers how to use:

  • the Timer control
  • an XML file as a data store
  • the NotifyIcon class
  • a custom trace listener for debugging and logging

Please note that Microsoft PowerPoint needs to be on the server and open for the application to work.

History

26 Oct 2002 - updated downloads

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Technical Lead Independent Consultant
United States United States
___________________________
J A M E S C O L E M A N
Director, Technical Services
Linked-In: http://www.linkedin.com/in/jameswcoleman
Blog: ledtalks.wordpress.com

Comments and Discussions

 
Questionwhere are the settings.xml? Pin
bryanli23-May-02 22:17
bryanli23-May-02 22:17 
Answercontents of settings.xml Pin
James Coleman28-May-02 3:48
James Coleman28-May-02 3:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.