Click here to Skip to main content
15,880,608 members
Articles / Programming Languages / C#

Clipboard Image Archiver

Rate me:
Please Sign up or sign in to vote.
4.00/5 (6 votes)
22 May 20054 min read 45.2K   718   28  
Method used by ClipboardImageArchiver - merits and demerits
ClipboardImageArchiver overcomes the problem of 'appending to zip' files using a combination of binary serialization and stream compression. This article mainly discusses this method used by ClipboardImageArchiver and its merits/demerits.
#region Using directives

using System;
using System.Collections.Generic;
using System.Windows.Forms;

#endregion

namespace ClipboardImageArchiver
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.EnableRTLMirroring();
            Application.Run(new MainForm());
        }
    }
}

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.


Written By
Web Developer
India India
Ashish is an Electronics Engineer. He loves computers and programming, and always tries to do something different. Ashish started his programming career with FoxPro 2.5 (6 years ago) .Ashish has programmed in number of languages including C\C++ , Tcl\Tk , Assembly Language , JavaScript. Currently he works with ASP.NET, C# and VB.NET. He is currently working in multinational consulting company in India.

He devotes much of his free time to his website: http://ashishware.com , which contains lot of cool stuff on webdevelopment and programing in general.

Comments and Discussions