1
This commit is contained in:
parent
5ae896d09f
commit
2015e638fe
@ -99,24 +99,24 @@ namespace HoistingCrane
|
||||
|
||||
private void buttonDeleteCar_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
||||
if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) return;
|
||||
try
|
||||
{
|
||||
int pos = Convert.ToInt32(maskedTextBox.Text);
|
||||
if ((_company - pos) != null)
|
||||
{
|
||||
MessageBox.Show("Объект удален!");
|
||||
pictureBox.Image = _company.Show();
|
||||
logger.LogInformation("Удален объект по позиции: {pos} ", pos);
|
||||
}
|
||||
else throw new Exception();
|
||||
}
|
||||
catch(Exception ex)
|
||||
{
|
||||
logger.LogInformation("Не удалось удалить объект по позиции: {pos}", Convert.ToInt32(maskedTextBox.Text));
|
||||
return;
|
||||
}
|
||||
//if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;
|
||||
//if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) return;
|
||||
//try
|
||||
//{
|
||||
// int pos = Convert.ToInt32(maskedTextBox.Text);
|
||||
// if ((_company - pos) != null)
|
||||
// {
|
||||
// MessageBox.Show("Объект удален!");
|
||||
// pictureBox.Image = _company.Show();
|
||||
// logger.LogInformation("Удален объект по позиции: {pos} ", pos);
|
||||
// }
|
||||
// else throw new Exception();
|
||||
//}
|
||||
//catch(Exception ex)
|
||||
//{
|
||||
// logger.LogInformation("Не удалось удалить объект по позиции: {pos}", Convert.ToInt32(maskedTextBox.Text));
|
||||
// return;
|
||||
//}
|
||||
}
|
||||
private void buttonRefresh_Click(object sender, EventArgs e)
|
||||
{
|
||||
@ -233,7 +233,7 @@ namespace HoistingCrane
|
||||
MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName);
|
||||
}
|
||||
catch (Exception ex)
|
||||
catch (FileNotFoundException ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
logger.LogError("Ошибка: {Message}", ex.Message);
|
||||
@ -257,7 +257,7 @@ namespace HoistingCrane
|
||||
RerfreshListBoxItems();
|
||||
logger.LogInformation("Загрузка в файл: {filename}", saveFileDialog.FileName);
|
||||
}
|
||||
catch(Exception ex)
|
||||
catch(FileNotFoundException ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
logger.LogError("Ошибка: {Message}", ex.Message);
|
||||
|
Loading…
Reference in New Issue
Block a user