Exemple #1
0
 private void Play(ListViewItem current)
 {
     if (current != null)
     {
         System.Diagnostics.Process.Start(@"" + current.Tag);
         current.BackColor = Color.Green;
         ScanDataBaseManager.InsertViewHistory(FileUtility.ReplaceInvalidChar(current.Tag + ""));
     }
 }
Exemple #2
0
 private void InsertViewHistory(string file)
 {
     ScanDataBaseManager.InsertViewHistory(FileUtility.ReplaceInvalidChar(file));
 }