Exemplo n.º 1
0
 /// <summary>
 /// Extract the contents of the downloaded zip file.
 /// Analysis files are not extracted because Scout does not use them.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnZipFile_Click(object sender, EventArgs e)
 {
     try {
         SequenceControl.ExtractFromZip(this); // Extract the contents of the downloaded zip file.
     } catch (Exception ex) {
         MessageBox.Show(ex.Message, "Unable to extract the contents of the downloaded zip file.");
     }
 }