예제 #1
0
 private void Comb_SummDetLeader_SelectedIndexChanged(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _ = new UpdateOptionsLeader((sender as ComboBox).SelectedIndex);
     _ = new LoadAllSummary();
     Cursor.Current = Cursors.Default;
 }
예제 #2
0
 private void CB_Idea_CheckedChanged(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _ = new UpdateOptionsIdea((sender as CheckBox).Checked);
     _ = new LoadAllSummary();
     Cursor.Current = Cursors.Default;
 }
예제 #3
0
 private void Pb_SummDet_Show_Click(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _ = new LoadAllSummary();
     MainProgram.Self.sdReporting1.UpdateReporting(null);
     MainProgram.Self.sdReporting2.UpdateReporting(null);
     Cursor.Current = Cursors.Default;
 }
예제 #4
0
 private void Num_SummaryDetailYear_ValueChanged(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _ = new UpdateOptionsYear((sender as NumericUpDown).Value);
     _ = new LoadAllSummary();
     MainProgram.Self.sdReporting1.UpdateReporting(null);
     MainProgram.Self.sdReporting2.UpdateReporting(null);
     Cursor.Current = Cursors.Default;
 }