Example #1
0
 private void Browsebtn_Click(object sender, EventArgs e)
 {
     try
     {
         string path = mp3.BrowseMP3File();
         FilePathtxt.Text = path;
         mp3.LoadSong(path);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "cant open file", MessageBoxButtons.OK);
     }
 }