Click here to Skip to main content
15,881,757 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.7K   2K   25  
How-to article describing software, hardware setup
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using NationalInstruments.DAQmx;

namespace Fluo
{
    public partial class frmDAQmxDevices : Form
    {
        public frmDAQmxDevices()
        {
            InitializeComponent();
        }

        public void ShowConfig()
        {
            Device d;
            ListViewItem lvi;

            foreach (string strDeviceName in DaqSystem.Local.Devices)
            {
                d = DaqSystem.Local.LoadDevice(strDeviceName);
                lvi = new ListViewItem(new string[]{d.DeviceID, d.IsSimulated.ToString(), d.ProductCategory.ToString(), d.ProductNumber.ToString(), d.ProductType, d.BusType.ToString()} );
                lvwDevices.Items.Add(lvi);
            }

            this.Hide();
            this.ShowDialog();      // blocks the thread until the dialog is closed
            this.Close();
        }
    }
}

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