Click here to Skip to main content
15,896,557 members
Articles / Programming Languages / C#

WPI Config Editor

Rate me:
Please Sign up or sign in to vote.
4.33/5 (2 votes)
18 Feb 2008LGPL31 min read 38.5K   748   37  
Simple editor for WPI configuration files.
using System;
using System.Windows.Forms;

namespace WpiConfigEditor
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            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.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Australia Australia
http://www.streetgeek.com.au/
http://dotnetdev.org/
http://www.optimatics.com/

Comments and Discussions