Exemplo n.º 1
0
 /// <summary>
 /// Update the database with the latest data on the bill's text, status, committee location, etc.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnImport_Click(object sender, EventArgs e)
 {
     try {
         SequenceControl.ImportToDB(this);
     } catch (Exception ex) {
         MessageBox.Show(ex.Message, "Unable to import the bill files.");
     }
 }