Click here to Skip to main content
15,897,273 members
Articles / Programming Languages / C#

CSV Filter

Rate me:
Please Sign up or sign in to vote.
4.72/5 (10 votes)
27 Sep 2009CPOL2 min read 46.2K   1.1K   20  
How to read, filter and write your CSV files
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace CSV_Filter
{
    public partial class About : Form
    {
        public About()
        {
            InitializeComponent();
            this.Show();
        }

        private void lnk_free_stuff_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            System.Diagnostics.Process.Start(@"http://www.qsoftonline.com/free_stuff");
            
        }

        private void lnk_website_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            System.Diagnostics.Process.Start(@"http://www.qsoftonline.com");
        }

        private void About_KeyDown(object sender, KeyEventArgs e)
        {
            MessageBox.Show(e.KeyCode.ToString());
        }
    }
}

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
Retired QSoft
Yemen Yemen
Biography?! I'm not dead yet!
www.QSoftOnline.com

Comments and Discussions