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

LED Example with Measurement Studio

Rate me:
Please Sign up or sign in to vote.
4.33/5 (9 votes)
28 Sep 2010CPOL3 min read 67.9K   2K   25  
How-to article describing software, hardware setup
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

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

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
Systems Engineer Prolitech
United States United States
doing business as Prolitech
Redwood City, CA

blog (mostly technical)
http://prolifictec.com/blog/index.html

Comments and Discussions