예제 #1
0
        DateTime SecondDate; //Конец периода

        private void StatisticsIngot_F_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (MessageBox.Show("Завершить просмотр статистики?", "Внимание", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK)
            {
                Analysis.DisposeField();
            }
            else
            {
                e.Cancel = true;
            }
        }
예제 #2
0
 private void FullAnalysis_F_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (MessageBox.Show("Завершить просмотр анализа?", "Внимание", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK)
     {
         Analysis.DisposeField();
         SystemArgs.PrintLog("Очистка памяти после выполнения анализа успешно завершена");
     }
     else
     {
         e.Cancel = true;
     }
 }