Optional shutdown after copy.

This commit is contained in:
Rich 2014-10-24 16:47:50 +00:00
parent 78e2016108
commit da27fae4f2

View File

@ -124,7 +124,7 @@ namespace Formats
fio = new FileInfo(destGenmacallPath + fi.Name);
if (fio.Exists && fio.IsReadOnly) fio.IsReadOnly = false;
}
MessageBox.Show("Formats Copied.");
if(MessageBox.Show("Do you want to end the Format Copier?","Formats Copied.", MessageBoxButtons.YesNo, MessageBoxIcon.Question)== DialogResult.Yes)Application.Exit();
}
private void buttonX2_Click(object sender, EventArgs e)