public Form1()
        {
            InitializeComponent();
            //upload the list view
            msongs s2;

            s2 = new msongs();
            string[] strAllLines = System.IO.File.ReadAllLines("ml1.txt");
            for (int i = 0; i < strAllLines.Length; i++)
            {
                string[] temp = strAllLines[i].Split(new string[] { "  " }, StringSplitOptions.None);
                msongs   s1   = new msongs();
                s1.songn  = temp[0];
                s1.songp  = temp[1];
                s1.songtp = Convert.ToInt32(temp[2]);
                songs.Add(s1);
                listView1.Items.Add(s1.songn + "   Times Played:  " + s1.songtp);
                i++;
            }
            funct dt = new funct();

            dt.date     = DateTime.Today;
            label1.Text = dt.date.ToString();
            //end of list view upload
        }