private void удалитьToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (RowID != null)
     {
         General.DeleteFromSQLDataBase("ConculationData", "ID", RowID);
         General.LoadSQLData("ConculationData", ConculationDataEditor);
         if (pName != null)
         {
             General.DeleteDirectory("RawList//" + pName);
         }
     }
     RowID = null;
     pName = String.Empty;
     General.SetRowIndex(ConculationDataEditor);
 }