Exemple #1
0
 /// <summary>
 /// Open the folder where the history for a certain user is kept
 /// </summary>
 /// <param name="name">User to request from history</param>
 public void OpenHistory(string name)
 {
     try
     {
         historyStorage.OpenFolderByName(name);
     }
     catch (Exception ex)
     {
         ex.Process(ErrorHandlingLevels.Tray, "Cannot open history folder");
     }
 }