Beispiel #1
0
 private void coberturaVerticalToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         VerticalIntegrationReportForm frmVerticalIntegrationReport = new VerticalIntegrationReportForm();
         frmVerticalIntegrationReport.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }