Example #1
0
        private void editDBButton_Click(object sender, EventArgs e)
        {
            string trailerDB = Application.StartupPath + "\\trailerDB.txt";

            if (File.Exists(trailerDB))
            {
                dBEditor dbeditor = new dBEditor();
                dbeditor.Show();
            }
            else
            {
                MessageBox.Show("No History Yet", "Beyond TV Trailer Downloader Error");
            }
        }
Example #2
0
 private void editDBButton_Click(object sender, EventArgs e)
 {
     string trailerDB = Application.StartupPath + "\\trailerDB.txt";
     if (File.Exists(trailerDB))
     {
         dBEditor dbeditor = new dBEditor();
         dbeditor.Show();
     }
     else
         MessageBox.Show("No History Yet", "Beyond TV Trailer Downloader Error");
 }