Exemplo n.º 1
0
 /// <summary>
 /// Download the most recent leginfo file, which is a zipped file.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnLegSite_Click(object sender, EventArgs e)
 {
     try {
         SequenceControl.ImportFromLegSite(this);
     } catch (Exception ex) {
         this.TopMost = false;
         MessageBox.Show(ex.Message, "Unable to start downloading the most recent leginfo zip file.");
     }
 }