Exemplo n.º 1
0
 /// <summary>
 /// Show those bills that have changed in some way from the last time the bill reports were regenerated.
 /// The most import change is a change in the bill's text.  Committee location is also important.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnUpdateAndNew_Click(object sender, EventArgs e)
 {
     try {
         SequenceControl.UpdateBillReports(this);
     } catch (Exception ex) {
         MessageBox.Show(ex.Message, "Unable to update bill reports.");
     }
 }