Click here to Skip to main content
15,891,841 members
Articles / Desktop Programming / Windows Forms

Document Preview Application

Rate me:
Please Sign up or sign in to vote.
4.74/5 (25 votes)
2 Jul 2009CPOL2 min read 133.1K   12.6K   89  
An application to preview your documents and files such as PDF, Doc, JPG, PPT, XSL.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DocExp.Interfaces
{
    public interface IPreview
    {
        void Preview(string path);
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Turkey Turkey
Tamer Oz is a Microsoft MVP and works as Assistant Unit Manager.

Comments and Discussions