Exemplo n.º 1
0
 private void InitiaReadTxt()
 {
     try
     {
         VerrichTextBox.Clear();
         txthelper     txthelp = new txthelper();
         List <string> txtlist;
         txthelp.Readtxtinfo(out txtlist, 1);
         for (int i = 0; i < txtlist.Count; i++)
         {
             VerrichTextBox.AppendText(txtlist[i] + "\r\n");
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }