Пример #1
0
 //================================================================================
 void loadList(string filePath)
 {
     try {
         txtList.Text = System.IO.File.ReadAllText(filePath);
         //lblLog.Text = CajApp.getCurrentTimeFormat() + ". loaded list."; //debug.
     } catch (Exception ex) {
         lblLog.Text  = CajApp.getCurrentTimeFormat() + ". Error loading list: " + ex.Message;
         txtList.Text = "";
     }
 }