Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / C#

AKnowledge - Auditing the Knowledge

Rate me:
Please Sign up or sign in to vote.
4.89/5 (8 votes)
23 Jun 2011CPOL5 min read 23.9K   895   17  
AKnowledge - Auditing the Knowledge
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace AKNowledge
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            try
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new AknowledgeForm());
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Auditor: Sorry for the following situation...", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            }
        }
    }
}

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
Software Developer (Senior)
Europe Europe
More than 30 years of software development experience.
(also playing the SCRUM Master role depending on the project)

Comments and Discussions